Vue.js 官方已经提供了新的脚手架项目以便使用 Vite 来搭建 Vue3 项目
- create-vue
相比于直接使用 Vite 提供的项目模板,此项目能够更方便的集成 Vue Router、Pinia、 Vitest、Cypress、Eslint 和 Prettier
本文并没有使用 create-vue 项目来生成项目,而是基于 Vite 提供的初始模板来完成
# 项目创建
yarn create vite |
Vue.js 官方已经提供了新的脚手架项目以便使用 Vite 来搭建 Vue3 项目
相比于直接使用 Vite 提供的项目模板,此项目能够更方便的集成 Vue Router、Pinia、 Vitest、Cypress、Eslint 和 Prettier
本文并没有使用 create-vue 项目来生成项目,而是基于 Vite 提供的初始模板来完成
yarn create vite |