$attrs、$listeners、$props的使用

$attrs、$listeners、$props的使用

这三个 ,在创建组件多层嵌套时,特别有用

  1. $attrs包含了父作用域中不作为 prop 被识别 (且获取) 的 attribute 绑定 (class 和 style 除外)。
  2. $props当前组件接收到的 props 对象。

$attrs、$listeners、$props的使用

$attrs、$listeners、$props的使用

  1. $listeners 包含了父作用域中的 (不含 .native 修饰器的) v-on 事件监听器。它可以通过 v-on="$listeners" 传入内部组件。避免了普通的那种方式,一层层的传到*组件,这样太繁琐了

$attrs、$listeners、$props的使用

上一篇:利用python爬取京东界面的评论数量,结果出来的全是 ‘空’,该怎么弄?


下一篇:vue3 组件传值之 props 与 attrs 的区别