import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' //components import '@Global/plugins/globalComponent.js' //hint text import HintText from "@Global/components/Texts/Hint.vue"; Vue.component('wm-hint-text', HintText) //vue window.Vue = require('vue'); //mixin import { global } from "@Global/mixins/global"; import { commingSoon } from "@Global/mixins/commingSoon"; Vue.mixin({ methods: { ...global["methods"], ...commingSoon["methods"] } }); //auth import '@Global/plugins/auth' const app = new Vue({ router, store, render: h => h(App), }).$mount('#app');