You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Home/app.js

43 lines
728 B

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