TheWelcome.vue 3.4 KB

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