使用https://github.com/matfish2/vue-tables-2,使用Vue版本2,我似乎无法绑定JSX上的click事件(在templates-> edit上):
var tableColumns = ['name', 'stock', 'sku', 'price', 'created_at']
var options = {
compileTemplates: true,
highlightMatches: true,
pagination: {
dropdown: true,
chunk: 10
},
filterByColumn: true,
texts: {
filter: 'Search:'
},
datepickerOptions: {
showDropdowns: true
},
templates: {
edit: function (h, row) {
return <button v-on:click={this.showItem(row.id)} class="btn btn-primary btn-sm"><i class="glyphicon glyphicon-edit"></i></button>
},
delete: function (h, row) {
return <a href="javascript:void(0);" class="btn btn-danger btn-sm"><i class="glyphicon glyphicon-erase"></i></a>
}
}
}
export default {
name: 'ItemList',
data: function () {
return {
options: options,
columns: tableColumns
}
},
methods: {
showItem: function (id) {
console.log(id)
}
}
}
点击后更改为JSX,但Vue无法识别.
.babelrc已经有:
{
"presets": ["es2015"],
"plugins": [
"transform-runtime",
"transform-vue-jsx"
]
}
解决方法:
我很难学到这一点,因为我在寻找解决方案时并不熟悉JSX.但是,不要使用onClick,而是单击鼠标右键.
干得好:
ES6
edit: (h, row) => {
return <button on-click={ () => this.showItem(row) } class="btn btn-primary btn-sm"><i class="glyphicon glyphicon-edit"></i></button>
},
ES5:
edit: function (h, row) {
return <button on-click={ this.showItem.bind(this, row) } class="btn btn-primary btn-sm"><i class="glyphicon glyphicon-edit"></i></button>
},