🗒️Vue3 和 Vite
1. 最简模式
1.1 package.json
{
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173"
},
"dependencies": {
"vue": "^3.2.38"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.3",
"vite": "^3.0.9"
}
}1.2 vite.config.js
1.x 截图

2. 仅增加 TS
2.1 package.json
2.2 vite.config.js(未变)
2.3 tsconfig.json
2.4 tsconfig.config.json
2.5 env.d.ts
2.x 截图
3. 仅增加 Vue Router
3.1 package.json
3.2 vite.config.js(未变)
3.x 截图

Last updated