首页 前端知识 Vue received a Component that was made a reactive object. This can lead to unnecessary performance

Vue received a Component that was made a reactive object. This can lead to unnecessary performance

2024-04-18 00:04:50 前端知识 前端哥 691 475 我要收藏
 技术栈:

vue3, pinia, vite, js

背景:

项目有一个layout组件,作用仅是提供路由<touter-view></router-view>,代码如截图所示

在路由配置文件router.config.js直接引入该组件

终端提示警告warning message

Vue received a Component that 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`. 
Component that was made reactive:

原因分析: 

将一个Vue组件对象转换为响应式对象时,可能会导致不必要的性能开销。这是因为Vue会对响应式对象进行递归式的深度观察,在对象的每个属性上都会添加getter和setter,以便能够在响应式对象发生变化时自动更新视图。

但是,在某些情况下,将Vue组件对象转换为响应式对象是不必要的,因为组件本身是Vue的核心概念,已经具有响应式的功能,因此,如果你将一个Vue组件对象转换为响应式对象,将会出现重复观察相同的对象属性的情况,导致不必要的性能开销。

为了避免这种情况,Vue建议使用markRaw方法将组件对象标记为非响应式对象,或者使用shallowRef代替ref来创建一个浅响应式对象

使用markRaw方法将组件对象标记为非响应式对象。例如

import { markRaw } from 'vue'

const MyComponent = {
  /* ... 组件的定义 ... */
}

const myComponent = markRaw(MyComponent)

使用shallowRef代替ref来创建一个浅响应式对象,例如

import { shallowRef } from 'vue'

const MyComponent = {
  /* ... 组件的定义 ... */
}

const myComponentRef = shallowRef(MyComponent)
解决方案:

在我们的例子中,我们在引用BlankLayout组件的位置,使用markRaw方法来标记其为非响应式对象:

转载请注明出处或者链接地址:https://www.qianduange.cn//article/5167.html
标签
评论
发布的文章

用js生成小米商城

2024-04-27 21:04:59

网页汇率计算器vue代码

2024-04-26 13:04:44

Python读写Json文件

2024-04-23 22:04:19

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!