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(){
///
}
}