拆分 v-model
import Vue from 'vue'
const component = {
props: ['valueOfSon'],
template: `
<div>
<input type="text" @input="handleInput" :value=valueOfSon>
</div>
`,
methods: {
handleInput (e) {
this.$emit('inputToParent', e.target.value)
}
}
}
new Vue({
components: {
CompOne: component
},
data () {
return {
valueOfParent: '123'
}
},
el: '#root',
template: `
<div>
<comp-one :valueOfSon="valueOfParent" @inputToParent="valueOfParent = arguments[0]"></comp-one>
</div>
`
})
稍微解释下,这里使用了父子组件,初始化的时候,父组件中的valueOfParent
通过prop
传递到子组件中,然后在子组件中使用@input
监测输入事件,一旦有输入事件,就调用handleInput
方法,方法中使用$emit
触发父组件中inputToParent
事件,并且还有一个参数,也就是input
框中的值,其中 e 代表event
,父组件的@inputToParent
收到信号后,调用了后面的方法,也就是给valueOfParent
赋值,赋的值为第一个参数,从而实现了v-model
的效果。
网友评论