vue element-ui 自定义弹窗 input,value的双向绑定
1. 创建袁术的函数const h = this.$createElement2. 生成input虚拟domconst obj = h('input', { 'style': { 'width': '120px' }, 'attrs': { 'value': this.test }, 'on': {input: function(event) {this.test ...
·
1. 创建袁术的函数 const h = this.$createElement
2. 生成input虚拟dom
const obj = h('input', { 'style': { 'width': '120px' }, 'attrs': { 'value': this.test }, 'on': { input: function(event) { this.test = event.target.value }.bind(this) } }, '')
关键点 on 需要的事件是input
获取改变的值event.target.value
绑定时间需要bind this
更多推荐
已为社区贡献1条内容
所有评论(0)