溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue3升級(jí)常見問題有哪些

發(fā)布時(shí)間:2023-03-07 11:09:39 來源:億速云 閱讀:109 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了vue3升級(jí)常見問題有哪些的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇vue3升級(jí)常見問題有哪些文章都會(huì)有所收獲,下面我們一起來看看吧。

    Ⅰ、前言

    雖然 vue3 是沒有刪除 vue2 的 選項(xiàng)式 API , 但是我們升級(jí)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、升級(jí) vuex 到 4.x

    vue2vue3
    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ù)

    錯(cuò)誤寫法

    <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

    錯(cuò)誤寫法 

    <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、遞歸組件 寫法變化

    如一個(gè)簡(jiǎn)化的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--> }

    可以利用 全局匹配修改

    vue3升級(jí)常見問題有哪些

    選擇正則匹配

    ::v-deep\s(.*)\s
    
    :deep($1)

    10、生命周期鉤子函數(shù) 命名修改

    beforeDestroy() =>    beforeUnmount()
    destroyed()     =>    unmounted()
    
    刪除 created() 生命周期

    11、數(shù)據(jù)總線 eventBus 變化

    vue3 中已經(jīng)移除了 eventBus 的一些方法 , 但是通過一點(diǎn)點(diǎn)代碼就能自己實(shí)現(xiàn)一個(gè)

    查看詳情 => vue3 eventBus

    12、異步組件

    components:{
        asyncCom1 :() => import('../components/test-com')
    }

    vue3 則要 修改為

    import { defineAsyncComponent } from 'vue'
    const asyncCom2  = defineAsyncComponent(() => import('組件路徑'))

    13、ui 組件庫(kù)

    ui 組件庫(kù)的 ,則需要參照 ui 組件庫(kù)的文檔進(jìn)行修改

    關(guān)于“vue3升級(jí)常見問題有哪些”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“vue3升級(jí)常見問題有哪些”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

    向AI問一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI