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 Vue.config.productionTip = false; Vue.use(antd); new Vue({ router, store, render: (h) => h(App), }).$mount("#app");