默认 primary _el-button">
当前位置:   article > 正文

Element el-button 按钮组件详解

el-button

点此查看全部文字教程、视频教程、源代码

1. 背景

按钮是很常用的,Element的按钮功能还是比较全面的,本篇就来介绍下。

先看下各种按钮的效果图:

在这里插入图片描述

2. 按钮分类

el-button按钮的分类基本是靠颜色区分的,另外还有一种文本按钮type="text",文本按钮由于比较小,比较适合用于表格每行的操作栏部分。

    按钮分类:
    <el-button>默认</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>
    <el-button type="text">text</el-button>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3. 按钮样式

Element提供了朴素按钮、圆角按钮、圆形按钮,需要注意的是圆形按钮一般只放一个图标进去,代码如下:

    按钮样式:
    <el-button type="primary" plain>朴素按钮</el-button>
    <el-button type="primary" round>圆角按钮</el-button>
    <el-button type="primary" circle icon="el-icon-search"></el-button>
  • 1
  • 2
  • 3
  • 4

4. 按钮状态

按钮状态其实就是HTML标准的功能,通过disabled实现禁用即可。

    按钮状态:
    <el-button type="primary">正常</el-button>
    <el-button type="primary" disabled>禁用</el-button>
  • 1
  • 2
  • 3

5. 按钮分组

按钮分组很好用,像常见的分页按钮,分成一组的话更加好看,通过<el-button-group>将按钮包裹起来,即可实现。

    按钮分组:
    <el-button-group>
      <el-button type="primary" icon="el-icon-arrow-left">上一页</el-button>
      <el-button type="primary">下一页<i class="el-icon-arrow-right el-icon--right"></i></el-button>
    </el-button-group>
  • 1
  • 2
  • 3
  • 4
  • 5

6. 按钮尺寸

饿了提供了默认、中、小、很小四种尺寸,代码如下:

 	按钮的尺寸:
    <el-button>默认</el-button>
    <el-button type="primary" size="medium ">medium</el-button>
    <el-button type="primary" size="small">small</el-button>
    <el-button type="primary" size="mini">mini</el-button>
  • 1
  • 2
  • 3
  • 4
  • 5

7. 小结

el-button提供的功能已经比较完善了,拿来即可即可。注意不推荐自己定义style来修改默认样式,容易导致外观不统一。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/106141
推荐阅读
相关标签
  

闽ICP备14008679号