方法一:选择模板预设
1 |
npm init vite@latest |
方法二:直接指定模板预设
1 |
npm init vite@latest vite-project --template vue-ts |
注意:
1 2 3 4 5 6 7 8 |
# 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 |
官方文档: