在 Element Plus 中自定义主题可以通过以下步骤实现:
npm install element-theme -g
// 主题色
$--color-primary: #409EFF;
$--color-success: #67C23A;
$--color-warning: #E6A23C;
$--color-danger: #F56C6C;
$--color-info: #909399;
element-theme -i element-variables.scss -o theme
<link rel="stylesheet" href="/path/to/theme/index.css">
通过以上步骤,你就可以在 Element Plus 中自定义主题了。可以根据自己的需求修改主题样式变量,生成新的主题样式文件,并引入到项目中即可生效。