自定义组件的 v-model

官方地址:https://cn.vuejs.org/v2/guide/components-custom-events.html#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%BB%84%E4%BB%B6%E7%9A%84-v-model
 

// 子组件





// 父组件


 




第一种  设置 props  和 model
第二种  用 this.$emit('input', name)   实现v-model绑定

你可能感兴趣的:(自定义组件的 v-model)