:root { --el-color-primary: #15ae6d;}.el-button--primary { --el-button-font-color: #ffffff; --el-button-background-color: #15ae6d; --el-button-border-color: #15ae6d; --el-but._element-plus fo">
赞
踩
想要一次性更换颜色吗?无需安装任何东西
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,
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。