//用于父子组件传参
<component
v-bind="item"
/>
//子标签在接收的时候 整体直接props
比如接收上面的数据:
props: {
placeholder: {
type: String,
default: ""
},
label: {
type: String,
required: true
}