Vue3之mergeProps原理分析

本文探讨Vue3中mergeProps的用法及其原理,解析了mergeProps如何处理特定道具,指出常见错误用法,并通过源码分析强调了需要包含style、class等关键属性。同时,详细介绍了normalizeClass和normalizeStyle函数的作用,帮助理解如何处理class和style属性,以提高Vue3应用开发的熟练度。
摘要由CSDN通过智能技术生成

很多人不知道megreProps的用法,今天我们就来讲解下mergeProps的用法以及原理

1.用法

大家觉得下面哪种用法是正确的呢?

这样

style: mergeProps({
   
    width: this.itemWidth
}, xProps.style)

或者这样

style: mergeProps({
   
    style: {
   
        width: this.itemWidth
    },
    ...(xProps?.style ?? {
   })
})

还是这样

style: mergeProps(
    {
   
      style: {
    width: this.itemWidth },
    },
    xProps,
).style

你使用的话会使用上面哪一种呢?

不知道

因为写的是jsx语法,所以查看了vue3的jsx语法,发现里面并没有关于这个解释,只说到了默认开启

于是去vue3官网查找,找到megreProps:Merge multiple props objects with special handling for certain props.

意思就说合并多个道具对象,对某些道具进行特殊处理

所以前面两种写法是错误的

接着看了下mergeProps源码的写法

// ...args将多个对象收集成数组
export function mergeProps(...args: (Data & VNodeProps)[]) {
   
  // 最终合并的结果
  const ret: Data = {
   }
  // 遍历用户传入的多个对象
  for (let i = 0; i < args.length; i++) {
   
    // 取到传入的对象值
    const toMerge = args[i]
    for (const key in toMerge
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值