Vue透传 Attributes的代码以及总结

//透传简单来说就是在子组件写style,class或者函数可以将它们,自动直接传递给 template:里面的单个节点。

//多个节点透传的自动传递会生效,如果在节点中像使用,那么就需要在对应的节点中写像:style="$attrs.style"的形式,才能对应的样式或函数接收到

//inheritAttrs: false可以阻止透传




 
 
  Document


 


   
App 父组件

   

          class="box"
      style="width: 300px; height: 200px; background: #ccc;"
      @click="handleClick"
    >
 

 
 

你可能感兴趣的:(vue.js,javascript,前端)