Bootstrap

vue3+ts+vite 搭建一个简易开发模板 附预览地址

Vite logo

Vue3-Template

💡 Github持续更新中…

💡 预览地址: https://lwm98.github.io/

在搭建的时候,发现vite这玩意是真的快的离谱…

一、环境搭建

1.使用vite 集成 vue3 + ts( ts 需要把–template 后的 ‘vue’ 更改成 ‘vue-ts’ )

# npm 6.x
npm init @vitejs/app my-vue-app --template vue

# npm 7+, 需要额外的双横线:
npm init @vitejs/app my-vue-app -- --template vue

# yarn
yarn create @vitejs/app my-vue-app --template vue

2.搭建完成,启动

二、基本配置

依赖 版本
vue3 3.0.5
vite 2.0.1
typescript 4.1.3
vuex 4.0.0
vue-router 4.0.4
element-plus 1.0.2-beta.32
axios 0.21.1
;