Skip to content

基础部分

常用的操作按钮

:::demo 使用typeplainround来定义 Button 的样式

vue

<template>
  <el-button style="color: red">Small</el-button>
  <el-button type="size">Middle</el-button>
  <el-button>Large</el-button>
  <el-button disabled>Disabled</el-button>
</template>

:::