[Vuejs]-Vue-tables-2 event emit not registering for custom filter

0👍

Assuming you have

Vue.use(VueTables.Event);

Then

materialType(value) {
    VueTables.Event.$emit('vue-tables.rmTable.filter::materialtype', value)
} 

Event is already a browser interface, which I’m guess is the reason it doesn’t work.

Leave a comment