chore: review changes

This commit is contained in:
Fayaz Ahmed
2024-05-15 11:51:36 +05:30
parent eeb17cd27c
commit 218b672498
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import Vue from 'vue';
import VueI18n from 'vue-i18n';
import VueRouter from 'vue-router';
import axios from 'axios';
import bus from './mitt.js';
import bus from '../dashboard/helper/mitt';
// Global Components
import hljs from 'highlight.js';
import Multiselect from 'vue-multiselect';
-11
View File
@@ -1,11 +0,0 @@
import mitt from 'mitt';
const emitter = mitt();
const bus = {
$on: emitter.on,
$off: emitter.off,
$emit: emitter.emit,
};
export default bus;