Skip to content

Commit 5080eaa

Browse files
committed
Fix dependency errors, remove deprecated imports, added index page
1 parent 606937d commit 5080eaa

File tree

6 files changed

+41
-32
lines changed

6 files changed

+41
-32
lines changed

nuxt.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export default defineNuxtConfig({
1010
"nuxt-icon",
1111
"nuxt-monaco-editor",
1212
"@nuxt/image",
13+
"@vueuse/nuxt",
1314
"nuxt-security"
1415
],
1516

package.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"private": true,
3-
"type": "module",
4-
"scripts": {
5-
"build": "nuxt build",
6-
"dev": "nuxt dev",
7-
"generate": "nuxt generate",
8-
"preview": "nuxt preview"
9-
},
10-
"devDependencies": {
11-
"@nuxt/content": "^2.8.5",
12-
"@nuxt/devtools": "1.0.0-beta.3",
13-
"@unocss/nuxt": "^0.56.5",
14-
"monaco-editor": "^0.44.0",
15-
"nuxt": "^3.7.4",
16-
"nuxt-icon": "^0.5.0",
17-
"nuxt-monaco-editor": "^1.2.3",
18-
"nuxt-security": "1.0.0-rc.2",
19-
"tailwindcss": "^3.3.3",
20-
"vue-router": "^4.2.5"
21-
},
22-
"dependencies": {
23-
"@headlessui/vue": "^1.7.16",
24-
"@heroicons/vue": "^2.0.18",
25-
"@julr/unocss-preset-forms": "^0.0.5",
26-
"@nuxt/image": "rc",
27-
"@unocss/reset": "^0.56.5",
28-
"@vueuse/core": "^10.6.1",
29-
"fetch-to-curl": "^0.6.0"
30-
}
2+
"private": true,
3+
"type": "module",
4+
"scripts": {
5+
"build": "nuxt build",
6+
"dev": "nuxt dev",
7+
"generate": "nuxt generate",
8+
"preview": "nuxt preview"
9+
},
10+
"devDependencies": {
11+
"@nuxt/content": "^2.8.5",
12+
"@nuxt/devtools": "1.0.0-beta.3",
13+
"@unocss/nuxt": "^0.56.5",
14+
"monaco-editor": "^0.44.0",
15+
"nuxt": "^3.7.4",
16+
"nuxt-icon": "^0.5.0",
17+
"nuxt-monaco-editor": "^1.2.3",
18+
"nuxt-security": "1.0.0-rc.2",
19+
"tailwindcss": "^3.3.3",
20+
"vue-router": "^4.2.5"
21+
},
22+
"dependencies": {
23+
"@headlessui/vue": "^1.7.16",
24+
"@heroicons/vue": "^2.0.18",
25+
"@julr/unocss-preset-forms": "^0.0.5",
26+
"@nuxt/image": "rc",
27+
"@unocss/reset": "^0.56.5",
28+
"@vueuse/nuxt": "^10.6.1",
29+
"fetch-to-curl": "^0.6.0"
30+
}
3131
}

src/components/content/Callout/Callout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<script setup lang="ts">
1313
import { CheckCircleIcon, InformationCircleIcon, ExclamationTriangleIcon } from "@heroicons/vue/24/outline";
14-
import { computed, defineProps } from "vue";
14+
import { computed } from "vue";
1515
1616
const props = defineProps({
1717
type: {

src/components/tableOfContents/TocElement.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
</template>
1212

1313
<script setup lang="ts">
14-
import { defineProps } from "vue";
1514
import { scroll } from "~/lib/navHelper/scroll";
1615
1716
interface TableOfContentsElement {

src/content/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# VC Repository
2+
3+
This is the walt.id Verifiable Credential Repository.
4+
Here you can find an assortment of Verifiable Credential examples and their corresponding example dynamic data mappings.
5+
6+
## Getting started
7+
8+
- [View the API endpoints](/introduction/getting-started)
9+
- Select a credential from the Repository to the left

src/content/introduction/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Getting Started
1+
# API: Endpoints
22

33
#### API
44

0 commit comments

Comments
 (0)