import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' //vuetify import vuetify from '@Global/plugins/vuetify' //Policy import './policy' //veeValidate => 0.3MB import "@Global/plugins/veeValidate"; //components import '@Global/plugins/globalComponent.js' //hint text import HintText from "@Global/components/Texts/Hint.vue"; Vue.component('wm-hint-text', HintText) //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, vuetify, render: h => h(App), }).$mount('#app');