|
| 1 | +<script setup> |
| 2 | +import WelcomeItem from './WelcomeItem.vue' |
| 3 | +import DocumentationIcon from './icons/IconDocumentation.vue' |
| 4 | +import ToolingIcon from './icons/IconTooling.vue' |
| 5 | +import EcosystemIcon from './icons/IconEcosystem.vue' |
| 6 | +import CommunityIcon from './icons/IconCommunity.vue' |
| 7 | +import 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 | + Widely regarded as one of the best, Vue’s |
| 18 | + <a target="_blank" href="https://v3.vuejs.org/">official documentation</a> |
| 19 | + will provide you with all information you need to get started. Whether you’re already a Vue |
| 20 | + veteran or just trying the framework out, great chances are you’ll find the answer to your next |
| 21 | + question there. |
| 22 | + </WelcomeItem> |
| 23 | + |
| 24 | + <WelcomeItem> |
| 25 | + <template #icon> |
| 26 | + <ToolingIcon /> |
| 27 | + </template> |
| 28 | + <template #heading>Tooling</template> |
| 29 | + |
| 30 | + This project is served and bundled with |
| 31 | + <a href="https://vitejs.dev/guide/features.html" target="_blank">Vite</a>. The recommended IDE |
| 32 | + setup is <a href="https://code.visualstudio.com/" target="_blank">VSCode</a> + |
| 33 | + <a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>. If you need to test |
| 34 | + your components and web pages, check out |
| 35 | + <a href="https://www.cypress.io/" target="_blank">Cypress</a> and |
| 36 | + <a href="https://docs.cypress.io/guides/component-testing/introduction" target="_blank" |
| 37 | + >Cypress Component Testing</a |
| 38 | + >. |
| 39 | + |
| 40 | + <br /> |
| 41 | + |
| 42 | + More instructions are available in <code>README.md</code>. |
| 43 | + </WelcomeItem> |
| 44 | + |
| 45 | + <WelcomeItem> |
| 46 | + <template #icon> |
| 47 | + <EcosystemIcon /> |
| 48 | + </template> |
| 49 | + <template #heading>Ecosystem</template> |
| 50 | + |
| 51 | + Get official tools and libraries for your project: |
| 52 | + <a target="_blank" href="https://next.vuex.vuejs.org/">Vuex</a>, |
| 53 | + <a target="_blank" href="https://next.router.vuejs.org/">Vue Router</a>, |
| 54 | + <a target="_blank" href="https://next.vue-test-utils.vuejs.org/">Vue Test Utils</a>, and |
| 55 | + <a target="_blank" href="https://github.com/vuejs/devtools">Vue Dev Tools</a>. If you need more |
| 56 | + resources, we suggest paying |
| 57 | + <a target="_blank" href="https://github.com/vuejs/awesome-vue">Awesome Vue</a> |
| 58 | + a visit. |
| 59 | + </WelcomeItem> |
| 60 | + |
| 61 | + <WelcomeItem> |
| 62 | + <template #icon> |
| 63 | + <CommunityIcon /> |
| 64 | + </template> |
| 65 | + <template #heading>Community</template> |
| 66 | + |
| 67 | + Got stuck? Ask your question on |
| 68 | + <a target="_blank" href="https://chat.vuejs.org">Vue Land</a>, our official Discord server, or |
| 69 | + <a target="_blank" href="https://stackoverflow.com/questions/tagged/vue.js">StackOverflow</a>. |
| 70 | + You should also subscribe to |
| 71 | + <a target="_blank" href="https://news.vuejs.org">our mailing list</a> for latest news in the Vue |
| 72 | + world. |
| 73 | + </WelcomeItem> |
| 74 | + |
| 75 | + <WelcomeItem> |
| 76 | + <template #icon> |
| 77 | + <SupportIcon /> |
| 78 | + </template> |
| 79 | + <template #heading>Support Vue</template> |
| 80 | + |
| 81 | + As an independent project, Vue relies on community backing for its sustainability. You can help |
| 82 | + us by |
| 83 | + <a target="_blank" href="https://vuejs.org/support-vuejs/">becoming a sponsor</a>. |
| 84 | + </WelcomeItem> |
| 85 | +</template> |
0 commit comments