-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
Description
以官方的grid示例为列!
1、html代码
<div @click="sortBy(column) | expression column.sortable">
2、自定义过滤器expression代码:
Vue.filter('expression', function (handler, expression) {
if (!handler) return;
if (expression) {
return function (e) {
return handler.call(this, e)
}
}
});
-------------------------------------报错--------------------------------------------
[Vue warn]: v-on:click="sortBy(column)" expects a function value, got undefined
说明:0.12版本是没有任何问题的!