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

3 years ago
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";
3 years ago
import ApiService from '@/utils/axios/api';
3 years ago
ApiService.init('https://app.champya-dev.ir');
3 years ago
import '@/utils/axios/errorHandler';
3 years ago
/* mixins */
import $_mixin from "./mixins/global";
3 years ago
import "./mixins/veeValidate";
3 years ago
Vue.mixin($_mixin);
3 years ago
Vue.config.productionTip = false
new Vue({
vuetify,
3 years ago
store,
3 years ago
router,
render: h => h(App)
}).$mount('#app')