aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/TheWelcome.vue
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/TheWelcome.vue')
-rw-r--r--frontend/src/components/TheWelcome.vue86
1 files changed, 0 insertions, 86 deletions
diff --git a/frontend/src/components/TheWelcome.vue b/frontend/src/components/TheWelcome.vue
deleted file mode 100644
index a70765c..0000000
--- a/frontend/src/components/TheWelcome.vue
+++ /dev/null
@@ -1,86 +0,0 @@
1<script setup lang="ts">
2import WelcomeItem from './WelcomeItem.vue'
3import DocumentationIcon from './icons/IconDocumentation.vue'
4import ToolingIcon from './icons/IconTooling.vue'
5import EcosystemIcon from './icons/IconEcosystem.vue'
6import CommunityIcon from './icons/IconCommunity.vue'
7import SupportIcon from './icons/IconSupport.vue'
8</script>
9
10<template>
11 <WelcomeItem>
12 <template #icon>
13 <DocumentationIcon />
14 </template>
15 <template #heading>Documentation</template>
16
17 Vue’s
18 <a href="https://vuejs.org/" target="_blank" rel="noopener">official documentation</a>
19 provides you with all information you need to get started.
20 </WelcomeItem>
21
22 <WelcomeItem>
23 <template #icon>
24 <ToolingIcon />
25 </template>
26 <template #heading>Tooling</template>
27
28 This project is served and bundled with
29 <a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
30 recommended IDE setup is
31 <a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
32 <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
33 you need to test your components and web pages, check out
34 <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a> and
35 <a href="https://on.cypress.io/component" target="_blank">Cypress Component Testing</a>.
36
37 <br />
38
39 More instructions are available in <code>README.md</code>.
40 </WelcomeItem>
41
42 <WelcomeItem>
43 <template #icon>
44 <EcosystemIcon />
45 </template>
46 <template #heading>Ecosystem</template>
47
48 Get official tools and libraries for your project:
49 <a href="https://pinia.vuejs.org/" target="_blank" rel="noopener">Pinia</a>,
50 <a href="https://router.vuejs.org/" target="_blank" rel="noopener">Vue Router</a>,
51 <a href="https://test-utils.vuejs.org/" target="_blank" rel="noopener">Vue Test Utils</a>, and
52 <a href="https://github.com/vuejs/devtools" target="_blank" rel="noopener">Vue Dev Tools</a>. If
53 you need more resources, we suggest paying
54 <a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">Awesome Vue</a>
55 a visit.
56 </WelcomeItem>
57
58 <WelcomeItem>
59 <template #icon>
60 <CommunityIcon />
61 </template>
62 <template #heading>Community</template>
63
64 Got stuck? Ask your question on
65 <a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>, our official
66 Discord server, or
67 <a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
68 >StackOverflow</a
69 >. You should also subscribe to
70 <a href="https://news.vuejs.org" target="_blank" rel="noopener">our mailing list</a> and follow
71 the official
72 <a href="https://twitter.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
73 twitter account for latest news in the Vue world.
74 </WelcomeItem>
75
76 <WelcomeItem>
77 <template #icon>
78 <SupportIcon />
79 </template>
80 <template #heading>Support Vue</template>
81
82 As an independent project, Vue relies on community backing for its sustainability. You can help
83 us by
84 <a href="https://vuejs.org/sponsor/" target="_blank" rel="noopener">becoming a sponsor</a>.
85 </WelcomeItem>
86</template>