鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 import type { App } from 'vue'
H 2 // 需要全局引入一些组件,如ElScrollbar,不然一些下拉项样式有问题
3 import { ElLoading, ElScrollbar, ElButton } from 'element-plus'
4
5 const plugins = [ElLoading]
6
7 const components = [ElScrollbar, ElButton]
8
9 export const setupElementPlus = (app: App<Element>) => {
10   plugins.forEach((plugin) => {
11     app.use(plugin)
12   })
13
14   components.forEach((component) => {
15     app.component(component.name, component)
16   })
17 }