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>Default</el-button>
|
|
|
|
<el-button type="primary">Primary</el-button>
|
|
|
|
<el-button type="success">Success</el-button>
|
|
|
|
<el-button type="info">Info</el-button>
|
|
|
|
<el-button type="warning">Warning</el-button>
|
|
|
|
<el-button type="danger">Danger</el-button>
|
2021-10-25 14:32:11 +08:00
|
|
|
<el-button>中文</el-button>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
|
2021-12-15 16:36:49 +08:00
|
|
|
<el-row class="mb-4">
|
2021-09-17 00:18:50 +08:00
|
|
|
<el-button plain>Plain</el-button>
|
|
|
|
<el-button type="primary" plain>Primary</el-button>
|
|
|
|
<el-button type="success" plain>Success</el-button>
|
|
|
|
<el-button type="info" plain>Info</el-button>
|
|
|
|
<el-button type="warning" plain>Warning</el-button>
|
|
|
|
<el-button type="danger" plain>Danger</el-button>
|
|
|
|
</el-row>
|
|
|
|
|
2021-12-15 16:36:49 +08:00
|
|
|
<el-row class="mb-4">
|
2021-09-17 00:18:50 +08:00
|
|
|
<el-button round>Round</el-button>
|
|
|
|
<el-button type="primary" round>Primary</el-button>
|
|
|
|
<el-button type="success" round>Success</el-button>
|
|
|
|
<el-button type="info" round>Info</el-button>
|
|
|
|
<el-button type="warning" round>Warning</el-button>
|
|
|
|
<el-button type="danger" round>Danger</el-button>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-row>
|
2021-10-27 23:17:13 +08:00
|
|
|
<el-button :icon="Search" circle></el-button>
|
|
|
|
<el-button type="primary" :icon="Edit" circle></el-button>
|
|
|
|
<el-button type="success" :icon="Check" circle></el-button>
|
|
|
|
<el-button type="info" :icon="Message" circle></el-button>
|
|
|
|
<el-button type="warning" :icon="Star" circle></el-button>
|
|
|
|
<el-button type="danger" :icon="Delete" circle></el-button>
|
2021-09-17 00:18:50 +08:00
|
|
|
</el-row>
|
|
|
|
</template>
|
2021-12-12 17:54:21 +08:00
|
|
|
|
2021-11-05 17:44:02 +08:00
|
|
|
<script setup lang="ts">
|
2021-12-04 11:20:06 +08:00
|
|
|
import {
|
|
|
|
Search,
|
|
|
|
Edit,
|
|
|
|
Check,
|
|
|
|
Message,
|
|
|
|
Star,
|
|
|
|
Delete,
|
|
|
|
} from '@element-plus/icons-vue'
|
2021-10-27 23:17:13 +08:00
|
|
|
</script>
|