2024-03-15 10:59:17 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import ElementUI from 'element-ui';
|
|
|
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
|
|
|
import './assets/global.css';
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import VueRouter from "vue-router";
|
|
|
|
|
import router from "@/router/router";
|
|
|
|
|
import store from "@/store/store";
|
|
|
|
|
Vue.prototype.$axios=axios;
|
2024-03-19 11:30:14 +08:00
|
|
|
Vue.prototype.$httpUrl='http://192.168.56.138:8081';
|
2024-03-15 10:59:17 +08:00
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
Vue.use(ElementUI,{size:'small'});
|
|
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
|
router,
|
|
|
|
|
store,
|
|
|
|
|
render: h => h(App),
|
|
|
|
|
}).$mount('#app')
|