elementUI 按钮美化

Posted xiaoliu66007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elementUI 按钮美化相关的知识,希望对你有一定的参考价值。

基础用法

el-button经常与icon搭配使用,type属性主要用于控制其颜色,plain属性用于控制其风格,round、circle属性用于控制其形状,以下是一组增删改查的按钮示例:

技术图片

 

<template>
  <div>
    <el-button icon="el-icon-circle-plus" type="primary">添加</el-button>
    <el-button round icon="el-icon-edit" type="warning">编辑</el-button>
    <el-button plain icon="el-icon-delete" type="danger">删除</el-button>
    <el-button plain round icon="el-icon-view" type="view">查看</el-button>
    <el-button circle icon="el-icon-share" type="success"></el-button>
  </div>
</template>

 一组按钮也可以放到同一个组件el-button-group中:

技术图片

 

<template>
  <el-button-group>
    <el-button type="primary" icon="el-icon-d-arrow-left">快退</el-button>
    <el-button type="primary" icon="el-icon-caret-right">播放</el-button>
    <el-button type="primary" icon="el-icon-d-arrow-right">快进</el-button>
    <el-button type="primary" icon="el-icon-bell">音量</el-button>
    <el-button type="primary" icon="el-icon-menu">菜单</el-button>
  </el-button-group>
</template>

 

el-button属性:

技术图片

 

以上是关于elementUI 按钮美化的主要内容,如果未能解决你的问题,请参考以下文章

代码神器,美化你的课程报告

代码神器,美化你的课程报告

Vue使用ElementUI的确认框进行删除操作(包含前后端代码)

css input[type=file] 样式美化,input上传按钮美化

怎么Matlab美化gui界面

博客美化08.添加"扩大/缩小浏览区域大小" 按钮