vuejs / babel-plugin-transform-vue-jsx

babel plugin for vue 2.0 jsx
1.85k stars 132 forks source link

how to subscribe events like on-select #132

Closed rawbin- closed 6 years ago

rawbin- commented 6 years ago

iView: https://www.iviewui.com/components/menu triggered an event named "on-select"

in vue template we use @on-select="selectMenu"

how can we subscribe this kind of event.

all of them worked

    // <Menu theme="light" accordion={this.accordion} style={this.styleObj} {...{on:{"on-select":this.selectMenu}}} >
    // <Menu theme="light" accordion={this.accordion} style={this.styleObj} onOn-select={this.selectMenu} >
    // <Menu theme="light" accordion={this.accordion} style={this.styleObj} on-on-select={this.selectMenu} >
ShawshankLin commented 5 years ago

iview的select组件为什么用onChange没有触发呢?