We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c3ef9 commit 7da6ad2Copy full SHA for 7da6ad2
pages/[...screen].vue
pages/index.vue
@@ -0,0 +1,27 @@
1
+<template>
2
+ <template v-if="siteConfig.services.length">
3
+ <Group
4
+ v-for="(group, key) in siteConfig.services"
5
+ :key="key"
6
+ v-bind="group"
7
+ />
8
+ </template>
9
+ <Message v-else title="Services not found">
10
+ <template #text>
11
+ <p>
12
+ Oops! You did not specify a list of services in <span class="border-b border-dashed">config.yaml</span>
13
+ </p>
14
+ <p class="mt-1">
15
+ <a href="#" class="text-sky-500 hover:text-sky-800">Go to documentation</a>
16
17
18
+ </Message>
19
+</template>
20
+
21
+<script setup lang="ts">
22
+const siteConfig = useSiteConfig()
23
24
+useHead({
25
+ title: siteConfig.title,
26
+})
27
+</script>
0 commit comments