我想知道如何实现具有自定义功能的DELETE
(例如,排序除外)。
基本上我想知道的是如何将我的HeaderComponent与保存网格的组件进行通信。 E.g:
CustomHeader
Apreciate任何帮助,
答案 0 :(得分:1)
我发现这样做的更简洁方法是通过EventBus
:
import Vue from 'vue';
const EventBus = new Vue();
export default {
//...
'HeaderComponent': {
// ...
methods: {
custom() {
EventBus.$emit('customEvent');
}
}
// ...
mounted() {
EventBus.$on('customEvent', () => {
// Do whatever...
});
}
}