尤大的vue3
发布已经有一段时间了,其官方脚手架创建项目已经默认使用vue3
版本,看来是时候拥抱vue3
用于正式的生产环境了。当然,因为vue3
对typescript
有着相比vue2
更好的支持,本身vue3
也是用typescript
写的,喜欢折腾学习新知识的可以尝试使用typescript
,还有尤大的vite
,利用现代浏览器的特性能让咱们拥有不管项目大小都能快速刷新的神器。
基于以上种种,笔者尝试用vite
+vue3
+typescript
搭建一个项目。
新建项目
vite
的使用方法可以看看官方文档,这里就不做过多的赘述。
yarn create vite my-vue-app --template vue-ts
文件改造
稍具规模的项目肯定少不了VueRouter
、element-plus
等插件和第三方UI框架。
笔者习惯单独设置一个文件去配置,如router.ts
,在定义routes
的时候会提示设置数据类型,开始的时候比较懵,后来发现可以import
需要的数据类型来配置,大概如下:
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
import Home from '../views/Home/index.vue'
const routes:RouteRecordRaw[] = [{
path: '/',
name: 'home',
component: Home
}]
const router = createRouter({
history: createWebHashHistory(),
routes
})
export default router
element-plus
支持自动导入,配置请自行查看element-plus文档,所以我习惯单独import
组件注册组件的ui.ts
,只引入项目中使用到的组件,内容大致如下:
import { App } from 'vue'
import {
ElButton
} from 'element-plus'
const ui = (app:App<Element>) => {
app.use(ElButton)
}
export default ui
为了正常挂载router
等,main.ts
还需要做一番调整,改造后大致内容如下:
import { createApp } from 'vue'
import App from './App.vue'
import ui from './plugin/index'
import store from './store/index'
import router from './router/index'
const app = createApp(App)
ui(app)
app.use(store)
app.use(router)
app.mount('#app')
tsconfig.json
的配置
- 允许使用
javascript
;
同一个项目,可能有些开发人员不习惯用ts
或者短时间内不会ts
,则可以开启允许js
的设置,这样在.vue
组件里可以使用js
来开发,而不必一定要<script lang="ts">
了。{ // some other settings... "allowJs": true, }
- 跳过第三方依赖库的
typescript
检测;
假如项目中使用了element-plus
等UI框架的话,当你打包的时候会发现一堆type undefined
报错,这是因为element-plus
本身依赖的一些插件是用javascript
写的,这时就要开启跳过第三方插件是否使用typescript
的设置了。{ // some other settings... "skipLibCheck":true, }
到此,基本已经把问题解决的差不多了,剩下的基本就是正常开发业务需求了。
网友评论