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-09-30 16:51:38 +08:00
|
|
|
//Vue.prototype.$httpUrl='http://127.0.0.1:8083';
|
2024-04-03 17:34:17 +08:00
|
|
|
//Vue.prototype.$httpUrl='http://192.68.2.88:8081';
|
2024-09-30 16:51:38 +08:00
|
|
|
Vue.prototype.$httpUrl='http://10.1.112.23:8083';
|
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')
|