最新代码

This commit is contained in:
yiqiuyang
2025-09-10 04:16:41 +08:00
parent ab310c6b48
commit 72de8a9b31
10 changed files with 2355 additions and 218 deletions

View File

@ -1,18 +1,27 @@
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.config.productionTip = false;
Vue.use(ElementUI);
import VxeUIAll from 'vxe-pc-ui'
import 'vxe-pc-ui/es/style.css'
const bus = new Vue();
Vue.prototype.$bus = bus;
import VxeUITable from 'vxe-table'
import 'vxe-table/es/style.css'
Vue.config.productionTip = false
Vue.use(VxeUIAll)
Vue.use(VxeUITable)
Vue.use(ElementUI)
const bus = new Vue()
Vue.prototype.$bus = bus
new Vue({
router,
store,
render: (h) => h(App),
}).$mount("#app");
}).$mount('#app')