vue动态绑定属性/事件

2020-11-24  本文已影响0人  jack_rofer

1.动态绑定属性/事件

<span :[someAttr]='attrValue' @[event]="handelClick">

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(){
   ///
  }
}
上一篇 下一篇

猜你喜欢

热点阅读