| | |
| | | import router from "./router"; |
| | | import store from "./store"; |
| | | import ElementPlus from "element-plus"; |
| | | |
| | | import "element-plus/dist/index.css"; |
| | | import "default-passive-events"; |
| | | import * as ElementPlusIconsVue from "@element-plus/icons-vue"; |
| | |
| | | import "./assets/css/global.css"; |
| | | //自适应 |
| | | import "amfe-flexible/index"; |
| | | import zhlocale from "element-plus/lib/locale/lang/zh-cn"; |
| | | |
| | | //粒子特效 |
| | | import VueParticles from "vue-particles"; |
| | | import Drag from "./utils/drag"; |
| | |
| | | } |
| | | |
| | | app |
| | | .use(ElementPlus) |
| | | .use(ElementPlus, { locale: zhlocale }) |
| | | .use(store) |
| | | .use(router) |
| | | .use(VueParticles) |