vue动态绑定属性/事件

1.动态绑定属性/事件



data(){
  someAttr: 'hidden', //https://developer.mozilla.org/zh-CN/docs/web/html/attributes
  attrValue: 'text',
  event: 'click'  // https://developer.mozilla.org/zh-CN/docs/Web/Events
},
methods: {
   handelClick(){
   ///
  }
}

你可能感兴趣的:(vue动态绑定属性/事件)