搭建基于vue3.2+vite2+ts
作者:互联网
兼容性注意
Vite 需要 Node.js 版本 >= 12.0.0。
使用 NPM:
$ npm init vite@latest
使用 Yarn:
$ yarn create vite
使用 PNPM:
$ pnpm create vite
你还可以通过附加的命令行选项直接指定项目名称和你想要使用的模板。例如,要构建一个 Vite + Vue 项目,运行:
# npm 6.x
npm init vite@latest my-vue-app --template vue
# npm 7+, 需要额外的双横线:
npm init vite@latest my-vue-app -- --template vue
# yarn
yarn create vite my-vue-app --template vue
# pnpm
pnpm create vite my-vue-app -- --template vue
我是基于ts搭建的使用一下命令:
yarn create vite my-vue-app --template vue-ts
标签:vue,--,app,ts,vue3.2,template,vite2,create,vite 来源: https://www.cnblogs.com/ddqyc/p/16193674.html