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

Logo

前往低代码交流专区

更多推荐