···11-<script setup lang="ts">
22-import WelcomeItem from './WelcomeItem.vue'
33-import DocumentationIcon from './icons/IconDocumentation.vue'
44-import ToolingIcon from './icons/IconTooling.vue'
55-import EcosystemIcon from './icons/IconEcosystem.vue'
66-import CommunityIcon from './icons/IconCommunity.vue'
77-import SupportIcon from './icons/IconSupport.vue'
88-</script>
99-1010-<template>
1111- <WelcomeItem>
1212- <template #icon>
1313- <DocumentationIcon />
1414- </template>
1515- <template #heading>Documentation</template>
1616-1717- Vue’s
1818- <a href="https://vuejs.org/" target="_blank" rel="noopener">official documentation</a>
1919- provides you with all information you need to get started.
2020- </WelcomeItem>
2121-2222- <WelcomeItem>
2323- <template #icon>
2424- <ToolingIcon />
2525- </template>
2626- <template #heading>Tooling</template>
2727-2828- This project is served and bundled with
2929- <a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
3030- recommended IDE setup is
3131- <a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
3232- <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
3333- you need to test your components and web pages, check out
3434- <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a> and
3535- <a href="https://on.cypress.io/component" target="_blank" rel="noopener"
3636- >Cypress Component Testing</a
3737- >.
3838-3939- <br />
4040-4141- More instructions are available in <code>README.md</code>.
4242- </WelcomeItem>
4343-4444- <WelcomeItem>
4545- <template #icon>
4646- <EcosystemIcon />
4747- </template>
4848- <template #heading>Ecosystem</template>
4949-5050- Get official tools and libraries for your project:
5151- <a href="https://pinia.vuejs.org/" target="_blank" rel="noopener">Pinia</a>,
5252- <a href="https://router.vuejs.org/" target="_blank" rel="noopener">Vue Router</a>,
5353- <a href="https://test-utils.vuejs.org/" target="_blank" rel="noopener">Vue Test Utils</a>, and
5454- <a href="https://github.com/vuejs/devtools" target="_blank" rel="noopener">Vue Dev Tools</a>. If
5555- you need more resources, we suggest paying
5656- <a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">Awesome Vue</a>
5757- a visit.
5858- </WelcomeItem>
5959-6060- <WelcomeItem>
6161- <template #icon>
6262- <CommunityIcon />
6363- </template>
6464- <template #heading>Community</template>
6565-6666- Got stuck? Ask your question on
6767- <a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>, our official
6868- Discord server, or
6969- <a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
7070- >StackOverflow</a
7171- >. You should also subscribe to
7272- <a href="https://news.vuejs.org" target="_blank" rel="noopener">our mailing list</a> and follow
7373- the official
7474- <a href="https://twitter.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
7575- twitter account for latest news in the Vue world.
7676- </WelcomeItem>
7777-7878- <WelcomeItem>
7979- <template #icon>
8080- <SupportIcon />
8181- </template>
8282- <template #heading>Support Vue</template>
8383-8484- As an independent project, Vue relies on community backing for its sustainability. You can help
8585- us by
8686- <a href="https://vuejs.org/sponsor/" target="_blank" rel="noopener">becoming a sponsor</a>.
8787- </WelcomeItem>
8888-</template>