我正在尝试将此https://github.com/matfish2/vue-tables-2与Vue 2.1.8 一起使用.
并且它工作正常但我需要使用自定义过滤器根据其值等格式化某些字段.
在选项我有这个:
customFilters: [ { name:'count', callback: function(row, query) { console.log('see me?'); // Not firing this return row.count[0] == query; } } ]
在文档中,它说我必须这样做:
Using the event bus: Event.$emit('vue-tables.filter::count', query);
但是我不知道在哪里放这个?我尝试了很多地方.例如在我的axios成功回调但没有.
我想这是非常基本的,我应该知道这一点,但我不知道.所以,如果有人能告诉我在哪里放那个活动车的工作人员会很棒!
文档可以更好地描述这一点.理解起来有点困难.
您需要导入Event
vue-tables-2 的命名导出,因此您拥有表的事件总线并在自定义单击处理程序中发出自定义事件.
在演示中,它可用于全局对象.在ES6中,您将按照文档中的描述导入它import {ServerTable, ClientTable, Event} from 'vue-tables-2';
请查看下面或此小提琴中的字母过滤器演示.
该演示类似于您可以在此处找到的vue-tables-1演示小提琴.
// Vue.use(VueTables)
const ClientTable = VueTables.ClientTable
const Event = VueTables.Event // import eventbus
console.log(VueTables);
Vue.use(ClientTable)
new Vue({
el: "#people",
methods: {
applyFilter(letter) {
this.selectedLetter = letter;
Event.$emit('vue-tables.filter::alphabet', letter);
}
},
data() {
return {
letters: ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'],
selectedLetter: '',
columns: ['id', 'name', 'age'],
tableData: [{
id: 1,
name: "John",
age: "20"
}, {
id: 2,
name: "Jane",
age: "24"
}, {
id: 3,
name: "Susan",
age: "16"
}, {
id: 4,
name: "Chris",
age: "55"
}, {
id: 5,
name: "Dan",
age: "40"
}],
options: {
// see the options API
customFilters: [{
name: 'alphabet',
callback: function(row, query) {
return row.name[0] == query;
}
}]
}
}
}
});
#people {
text-align: center;
width: 95%;
margin: 0 auto;
}
h2 {
margin-bottom: 30px;
}
th,
td {
text-align: left;
}
th:nth-child(n+2),
td:nth-child(n+2) {
text-align: center;
}
thead tr:nth-child(2) th {
font-weight: normal;
}
.VueTables__sort-icon {
margin-left: 10px;
}
.VueTables__dropdown-pagination {
margin-left: 10px;
}
.VueTables__highlight {
background: yellow;
font-weight: normal;
}
.VueTables__sortable {
cursor: pointer;
}
.VueTables__date-filter {
border: 1px solid #ccc;
padding: 6px;
border-radius: 4px;
cursor: pointer;
}
.VueTables__filter-placeholder {
color: #aaa;
}
.VueTables__list-filter {
width: 120px;
}