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.
18 lines
485 B
JavaScript
18 lines
485 B
JavaScript
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";
|
|
import "../src/style/userinfo.less"; //用户账号设置和个人中心的样式
|
|
import "@/permission"; // permission control
|
|
import "./svg";
|
|
Vue.config.productionTip = false;
|
|
Vue.use(antd);
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App),
|
|
}).$mount("#app");
|