
获得徽章 0
赞了这篇文章
赞了这篇沸点
vue 传参的两个小技巧:
cn.vuejs.org
<!-- 绑定一个有属性的对象 -->
<div v-bind="{ id: someProp, 'other-attr': otherProp }"></div>
<!-- 通过 $props 将父组件的 props 一起传给子组件 -->
<child-component v-bind="$props" />
<!-- 绑定一个有属性的对象 -->
<div v-bind="{ id: someProp, 'other-attr': otherProp }"></div>
<!-- 通过 $props 将父组件的 props 一起传给子组件 -->
<child-component v-bind="$props" />
展开
评论
15
赞了这篇沸点