TheWelcome.vue 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. <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">Cypress Component Testing</a>.
  32. <br />
  33. More instructions are available in <code>README.md</code>.
  34. </WelcomeItem>
  35. <WelcomeItem>
  36. <template #icon>
  37. <EcosystemIcon />
  38. </template>
  39. <template #heading>Ecosystem</template>
  40. Get official tools and libraries for your project:
  41. <a href="https://pinia.vuejs.org/" target="_blank" rel="noopener">Pinia</a>,
  42. <a href="https://router.vuejs.org/" target="_blank" rel="noopener">Vue Router</a>,
  43. <a href="https://test-utils.vuejs.org/" target="_blank" rel="noopener">Vue Test Utils</a>, and
  44. <a href="https://github.com/vuejs/devtools" target="_blank" rel="noopener">Vue Dev Tools</a>. If
  45. you need more resources, we suggest paying
  46. <a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">Awesome Vue</a>
  47. a visit.
  48. </WelcomeItem>
  49. <WelcomeItem>
  50. <template #icon>
  51. <CommunityIcon />
  52. </template>
  53. <template #heading>Community</template>
  54. Got stuck? Ask your question on
  55. <a href="https://chat.vuejs.org" target="_blank" rel="noopener">Vue Land</a>, our official
  56. Discord server, or
  57. <a href="https://stackoverflow.com/questions/tagged/vue.js" target="_blank" rel="noopener"
  58. >StackOverflow</a
  59. >. You should also subscribe to
  60. <a href="https://news.vuejs.org" target="_blank" rel="noopener">our mailing list</a> and follow
  61. the official
  62. <a href="https://twitter.com/vuejs" target="_blank" rel="noopener">@vuejs</a>
  63. twitter account for latest news in the Vue world.
  64. </WelcomeItem>
  65. <WelcomeItem>
  66. <template #icon>
  67. <SupportIcon />
  68. </template>
  69. <template #heading>Support Vue</template>
  70. As an independent project, Vue relies on community backing for its sustainability. You can help
  71. us by
  72. <a href="https://vuejs.org/sponsor/" target="_blank" rel="noopener">becoming a sponsor</a>.
  73. </WelcomeItem>
  74. </template>