vue3升級常見問題詳細匯總
Ⅰ、前言
雖然 vue3 是沒有刪除 vue2 的 選項式 API , 但是我們升級vue3 還是需要修改很多問題的
下面來看看我們升級常見的一些問題 ??
Ⅱ、解決兼容問題
1、路由的創(chuàng)建方式
① vue2 寫法
const router = new VueRouter({
routes: []
});
export default router;
②改為 vue3 寫法
import { createRouter, createWebHistory } from 'vue-router'
const routerHistory = createWebHistory()
const router = createRouter({
history: routerHistory,
routes: []
})
export default router
2、路由的方法變化
this.$router.push({path: '/bbb', query: {username: "abc"}});
修改為
import { useRouter } from 'vue-router'
const router = useRouter()
router.push({ path:'/bbb', params:{ username: 'posva'} });
3、升級 vuex 到 4.x
| vue2 | vue3 |
|---|---|
| vue2要用vuex 3.x 版本 | vue3要用vuex 4.x 版本 |
4、作用域 插槽語法修改
在 2.6 以下
<template slot-scope="row">
<span>{{row.name}}</span>
</template>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<template slot="header">
<span>666</span>
</template>
2.6 以上及 3.x 則需要改為 ??
<template v-slot:default="row">
<span>{{row.name}}</span>
</template>
或
<template #default="row">
<span>{{row.name}}</span>
</template>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<template v-slot:header>
<span>666</span>
</template>
5、具名插槽不能重復(fù)
錯誤寫法 ??
<Comp> <span>999</span> <template #default> <span>666</span> </template> <template #default> <span>777</span> </template> </Comp>
正確寫法 ??
<Comp> <template #default> <span>999</span> <span>666</span> <span>777</span> </template> </Comp>
6、根掛載的變化
import Vue from 'vue'
import App from './App.vue'
import router from './router' //路由
import store from './store' //vuex
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
修改為 ??
import { createApp } from 'vue'
import App from './App.vue'
import router from './router' //路由
import store from './store' //vuex
createApp(App)
.use(store)
.use(router)
.mount('#app')
7、模板 v-for ,必須在模板上掛載 key
錯誤寫法 ??
<template v-for="item in list">
<div :key='item.key'>{{item.name}}</div>
</template>
正確寫法 ??
<template v-for="item in list" :key='item.key'>
<div>{{item.name}}</div>
</template>
8、遞歸組件 寫法變化
如一個簡化的tree例子
<template>
<Tree :list ="list">
</template>
<script >
import Tree from './Tree.vue'
export default {
data() {
return {
list:[
{name:'aaa' , children:[{ name:'ccc' }] } ,
{name:'bbb'}
]
}
}
</script>
vue2 需要導(dǎo)入本身
<template>
<div v-for='item in list' :key='item.name'>
<span>{{item.name}}</span>
<Tree :list ="list.children" v-if='list.children'>
</div>
</template>
<script>
import Tree from './Tree.vue'
export default {
components: { Tree },
}
};
</script>
vue3根據(jù)組件名
<template>
<div v-for='item in list' :key='item.name'>
<span>{{item.name}}</span>
<Tree :list ="list.children" v-if='list.children'>
</div>
</template>
<script>
export default {
name:'Tree'
}
</script>
9、深層樣式寫法變化
如 :
::v-deep .input__text{<!--{C}%3C!%2D%2D%20%2D%2D%3E--> }修改為:
:deep(.input__text){<!--{C}%3C!%2D%2D%20%2D%2D%3E--> }可以利用 全局匹配修改

選擇正則匹配
::v-deep\s(.*)\s :deep($1)
10、生命周期鉤子函數(shù) 命名修改
beforeDestroy() => beforeUnmount() destroyed() => unmounted() 刪除 created() 生命周期
11、數(shù)據(jù)總線 eventBus 變化
vue3 中已經(jīng)移除了 eventBus 的一些方法 , 但是通過一點點代碼就能自己實現(xiàn)一個
查看詳情 => vue3 eventBus
12、異步組件
components:{
asyncCom1 :() => import('../components/test-com')
}
vue3 則要 修改為 ??
import { defineAsyncComponent } from 'vue'
const asyncCom2 = defineAsyncComponent(() => import('組件路徑'))
13、ui 組件庫
ui 組件庫的 ,則需要參照 ui 組件庫的文檔進行修改
總結(jié)
到此這篇關(guān)于vue3升級常見問題的文章就介紹到這了,更多相關(guān)vue3升級問題內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
VUE 實現(xiàn)element upload上傳圖片到阿里云
這篇文章主要介紹了VUE 實現(xiàn)element upload上傳圖片到阿里云,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-08-08
Vue登錄后添加動態(tài)路由并跳轉(zhuǎn)的實踐分享
這篇文章講給大家詳細介紹一下Vue如何實現(xiàn)登錄后添加動態(tài)路由并跳轉(zhuǎn),文章通過代碼示例介紹的非常詳細,對我們的學(xué)習(xí)或工作有一定的的幫助,需要的朋友可以參考下2023-07-07

