赞
踩
目录
使用npm
npm create vite@latest
使用yarn
yarn create vite
Vite 需要 Node.js 版本 >= 12.0.0。然而,有些模板需要依赖更高的 Node 版本才能正常运行,当你的包管理器发出警告时,请注意升级你的 Node 版本。
npm
npm create vite@latest my-vue-app --template vue
yarn个更换命令即可
执行后选择vue+ts模板(键盘上下键选择回车即可)
- npm install
- npm run dev
跑起来后需要配置一哈IP访问才能通过IP进行访问
vite.config.ts文件
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [
- vue(),
-
- ],
- ++ server: {
- host: '0.0.0.0'
- }
- })
参照官网:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。