2022-08-12 18:26:27 +08:00
|
|
|
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 "@/css/style.css";
|
2022-10-18 19:30:05 +08:00
|
|
|
import "./router/main";
|
2022-08-02 10:16:07 +08:00
|
|
|
|
2022-08-12 18:26:27 +08:00
|
|
|
Vue.use(ElementUI);
|
|
|
|
|
Vue.config.productionTip = false;
|
2022-08-02 10:16:07 +08:00
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
|
router,
|
|
|
|
|
store,
|
2022-08-12 18:26:27 +08:00
|
|
|
render: (h) => h(App),
|
|
|
|
|
}).$mount("#app");
|
2022-08-17 16:22:36 +08:00
|
|
|
|
|
|
|
|
document.title = "春分ERP-鲜花";
|