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.

24 lines
564 B

import Vue from 'vue';
import store from './store'
import App from './App.vue';
import vuetify from './plugins/vuetify';
import router from './router';
import './utils/GlobalComponents';
import "./styles/global.scss";
import ApiService from '@/utils/axios/api';
ApiService.init('https://app.champya-dev.ir');
import '@/utils/axios/errorHandler';
/* mixins */
import $_mixin from "./mixins/global";
import "./mixins/veeValidate";
Vue.mixin($_mixin);
Vue.config.productionTip = false
new Vue({
vuetify,
store,
router,
render: h => h(App)
}).$mount('#app')