2021-09-17 00:18:50 +08:00
|
|
|
<template>
|
2021-12-15 16:36:49 +08:00
|
|
|
<el-row class="mb-4">
|
2021-09-17 00:18:50 +08:00
|
|
|
<el-button disabled>Default</el-button>
|
|
|
|
<el-button type="primary" disabled>Primary</el-button>
|
|
|
|
<el-button type="success" disabled>Success</el-button>
|
|
|
|
<el-button type="info" disabled>Info</el-button>
|
|
|
|
<el-button type="warning" disabled>Warning</el-button>
|
|
|
|
<el-button type="danger" disabled>Danger</el-button>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
<el-button plain disabled>Plain</el-button>
|
|
|
|
<el-button type="primary" plain disabled>Primary</el-button>
|
|
|
|
<el-button type="success" plain disabled>Success</el-button>
|
|
|
|
<el-button type="info" plain disabled>Info</el-button>
|
|
|
|
<el-button type="warning" plain disabled>Warning</el-button>
|
|
|
|
<el-button type="danger" plain disabled>Danger</el-button>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
2021-12-21 15:51:33 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--el-color-primary: #409eff;
|
|
|
|
--el-color-success: #67c23a;
|
|
|
|
--el-color-warning: #e6a23c;
|
|
|
|
--el-color-danger: #f56c6c;
|
|
|
|
--el-color-error: #f56c6c;
|
|
|
|
--el-color-info: #909399;
|
|
|
|
}
|
|
|
|
</style>
|