提交 | 用户 | 时间 | ||
820397 | 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 | } |