elementui plus更换主题颜色——so easy! + i18n 中文

想要一次性更换颜色吗?无需安装任何东西

APP.vue 文件中


i18n 国际化

import zhCn from 'element-plus/es/locale/lang/zh-cn'

const app = createApp(App)
app.use(ElementPlus, {
  locale: zhCn,
})

你可能感兴趣的:(vue,elementui,vue.js)