Files
pillar/src/scripts/js/es6/common/vuecomponents/comments/EventBus.js

8 lines
206 B
JavaScript
Raw Normal View History

export const Events = {
NEW_COMMENT: 'new-comment',
UPDATED_COMMENT: 'updated-comment',
EDIT_DONE: 'edit-done',
BEFORE_SHOW_EDITOR: 'before-show-editor'
}
export const EventBus = new Vue();