TheWelcome.vue 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <script setup lang="ts">
  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. <template>
  10. <WelcomeItem>
  11. <template #icon>
  12. <DocumentationIcon />
  13. </template>
  14. <template #heading>Documentation</template>
  15. Vue’s
  16. <a href="https://vuejs.org/" target="_blank" rel="noopener">official documentation</a>
  17. provides you with all information you need to get started.
  18. </WelcomeItem>
  19. <WelcomeItem>
  20. <template #icon>
  21. <ToolingIcon />
  22. </template>
  23. <template #heading>Tooling</template>
  24. This project is served and bundled with
  25. <a href="https://vitejs.dev/guide/features.html" target="_blank" rel="noopener">Vite</a>. The
  26. recommended IDE setup is
  27. <a href="https://code.visualstudio.com/" target="_blank" rel="noopener">VSCode</a> +
  28. <a href="https://github.com/johnsoncodehk/volar" target="_blank" rel="noopener">Volar</a>. If
  29. you need to test your components and web pages, check out
  30. <a href="https://www.cypress.io/" target="_blank" rel="noopener">Cypress</a> and
  31. <a href="https://on.cypress.io/component" target="_blank" rel="noopener"
  32. >Cypress Component Testing</a
  33. >.
  34. <br />
  35. More instructions are available in <code>README.md</code>.
  36. </WelcomeItem>
  37. <WelcomeItem>
  38. <template #icon>
  39. <EcosystemIcon />
  40. </template>
  41. <template #heading>Ecosystem</template>
  42. Get official tools and libraries for your project:
  43. <a href="https://pinia.vuejs.org/" target="_blank" rel="noopener">Pinia</a>,
  44. <a href="https://router.vuejs.org/" target="_blank" rel="noopener">Vue Router</a>,
  45. <a href="https://test-utils.vuejs.org/" target="_blank" rel="noopener">Vue Test Utils</a>, and
  46. <a href="https://github.com/vuejs/devtools" target="_blank" rel="noopener">Vue Dev Tools</a>. If
  47. you need more resources, we suggest paying
  48. <a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">Awesome Vue</a>
  49. a visit.
  50. </WelcomeItem>
  51. <WelcomeItem>
  52. <template #icon>
  53. <CommunityIcon />
  54. </template>
  55. <template #heading>Community</template>
  56. Got stuck? Ask your question on
  57. <a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>, our official
  58. Discord server, or
  59. <a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
  60. >StackOverflow</a
  61. >. You should also subscribe to
  62. <a href="https://news.vuejs.org" target="_blank" rel="noopener">our mailing list</a> and follow
  63. the official
  64. <a href="https://twitter.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
  65. twitter account for latest news in the Vue world.
  66. </WelcomeItem>
  67. <WelcomeItem>
  68. <template #icon>
  69. <SupportIcon />
  70. </template>
  71. <template #heading>Support Vue</template>
  72. As an independent project, Vue relies on community backing for its sustainability. You can help
  73. us by
  74. <a href="https://vuejs.org/sponsor/" target="_blank" rel="noopener">becoming a sponsor</a>.
  75. </WelcomeItem>
  76. </template>