You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bocai_supplyChain_pc/src/main.js

15 lines
342 B
JavaScript

4 years ago
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import antd from "ant-design-vue";
import "ant-design-vue/dist/antd.css";
import "../src/style/index.less";
Vue.config.productionTip = false;
Vue.use(antd);
new Vue({
router,
store,
render: (h) => h(App),
}).$mount("#app");