您好,登錄后才能下訂單哦!
這篇“Vue3動態組件如何進行異常處理”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue3動態組件如何進行異常處理”文章吧。
動態組件有兩種常用場景:
一是動態路由:
// 動態路由
export const asyncRouterMap: Array<RouteRecordRaw> = [
{
path: '/',
name: 'index',
meta: { title: '首頁' },
component: BasicLayout, // 引用了 BasicLayout 組件
redirect: '/welcome',
children: [
{
path: 'welcome',
name: 'Welcome',
meta: { title: '引導頁' },
component: () => import('@/views/welcome.vue')
},
...
]
}
]
二是動態渲染組件,比如在 Tabs 中切換:
<el-tabs :model-value="copyTabName" type="card">
<template v-for="item in tabList" :key="item.key || item.name">
<el-tab-pane
:name="item.key"
:label="item.name"
:disabled="item.disabled"
:lazy="item.lazy || true"
>
<template #label>
<span>
<component v-if="item.icon" :is="item.icon" />
{{ item.name }}
</span>
</template>
// 關鍵在這里
<component :key="item.key || item.name" :is="item.component" v-bind="item.props" />
</el-tab-pane>
</template>
</el-tabs>
在 vue2 中使用并不會引發什么其他的問題,但是當你將組件包裝成一個響應式對象時,在 vue3 中,會出現一個警告:
Vue received a Component which was made a reactive object. This can lead to unnecessary performance overhead, and should be avoided by marking the component with markRaw
or using shallowRef
instead of ref
.
出現這個警告是因為:使用 reactive 或 ref(在 data 函數中聲明也是一樣的)聲明變量會做 proxy 代理,而我們組件代理之后并沒有其他用處,為了節省性能開銷,vue 推薦我們使用 shallowRef 或者 markRaw 跳過 proxy 代理。
解決方法如上所說,需要使用 shallowRef 或 markRaw 進行處理:
對于 Tabs 的處理:
import { markRaw, ref } from 'vue'
import A from './components/A.vue'
import B from './components/B.vue'
interface ComponentList {
name: string
component: Component
// ...
}
const tab = ref<ComponentList[]>([{
name: "組件 A",
component: markRaw(A)
}, {
name: "組件 B",
component: markRaw(B)
}])
對于動態路由的處理:
import { markRaw } from 'vue'
// 動態路由
export const asyncRouterMap: Array<RouteRecordRaw> = [
{
path: '/',
name: 'home',
meta: { title: '首頁' },
component: markRaw(BasicLayout), // 使用 markRaw
// ...
}
]
而對于 shallowRef 和 markRaw,2 者的區別在于 shallowRef 只會對 value 的修改做出反應,比如:
const state = shallowRef({ count: 1 })
// 不會觸發更改
state.value.count = 2
// 會觸發更改
state.value = { count: 2 }
而 markRaw,是將一個對象標記為不可被轉為代理。然后返回該對象本身。
const foo = markRaw({})
console.log(isReactive(reactive(foo))) // false
// 也適用于嵌套在其他響應性對象
const bar = reactive({ foo })
console.log(isReactive(bar.foo)) // false
可看到,被 markRaw 處理過的對象已經不是一個響應式對象了。
對于一個組件來說,它不應該是一個響應式對象,在處理時,shallowRef 和 markRaw 2 個 API,推薦使用 markRaw 進行處理。
以上就是關于“Vue3動態組件如何進行異常處理”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。