mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-09-21 20:32:03 +08:00
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
import ElementPlus from "element-plus";
|
|
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
|
import "element-plus/dist/index.css";
|
|
|
|
export function setupElementPlus(app) {
|
|
app.use(ElementPlus, {
|
|
locale: zhCn,
|
|
size: "default",
|
|
});
|
|
}
|