elementui plus更换主题颜色——so easy! + i18n 中文
想要一次性更换颜色吗?无需安装任何东西APP.vue 文件中<style lang="scss">:root {--el-color-primary: #15ae6d;}.el-button--primary {--el-button-font-color: #ffffff;--el-button-background-color: #15ae6d;--el-button-border
·
想要一次性更换颜色吗?无需安装任何东西
APP.vue 文件中
<style lang="scss">
:root {
--el-color-primary: #15ae6d;
}
.el-button--primary {
--el-button-font-color: #ffffff;
--el-button-background-color: #15ae6d;
--el-button-border-color: #15ae6d;
--el-button-hover-color: #15ae6d;
--el-button-active-font-color: #e6e6e6;
--el-button-active-background-color: #15ae6d;
--el-button-active-border-color: #15ae6d;
}
</style>
i18n 国际化
import zhCn from 'element-plus/es/locale/lang/zh-cn'
const app = createApp(App)
app.use(ElementPlus, {
locale: zhCn,
})
更多推荐
已为社区贡献4条内容
所有评论(0)