美文网首页前端开发
饿了吗组件Element研究之基础篇

饿了吗组件Element研究之基础篇

作者: 妮儿_smile | 来源:发表于2017-03-28 15:03 被阅读0次

1.Layout布局(栅格基础布局)

标签:

el-row包裹一行,距下20px

 el-col,一列   用法(el-col :span="24", 1-24自由选择)

属性

gutter: 指定栏与栏之间的间隔,默认为零。 用法 <el-row :gutter="20">

offset: 分栏偏移。 用法 <el-col :span="6" :offset="6">

flex布局

将type属性赋值为 'flex',可以启用 flex 布局,并可通过justify属性来指定 start, center, end, space-between(左右不留间隔), space-around (左右也有间隔)其中的值来定义子元素的排版方式。

用法 <el-row type="flex" justify="center">

响应式布局

参照了 Bootstrap 的 响应式设计,预设了四个响应尺寸:xs、sm、md和lg。

栅栏系统属性

2.图标

使用:

通过设置类名为el-icon-iconName来使用即可。eg <i class="el-icon-edit"></i>

3.button按钮

1.基础用法

Button 组件默认提供7种主题,由type属性来定义,默认为default。

<el-button>默认按钮</el-button>

<el-button type="primary">默认按钮</el-button>

2.禁用状态

你可以使用disabled属性来定义按钮是否可用,它接受一个Boolean值。

<el-button :plain="true" :disabled="true">主要按钮</el-button>

3.颜色倾向

type="success warning danger info"

4.图标按钮

ps.其他类名

自定义css??

.block:{padding:30px 24px; border-bottom:#eff2f6}

.demonstration{font-size:14px;color:#8492a6;line-height:44px}

.demo-button .intro-block .wrapper{float:right;margin-right:20px;}

.el-dropdown {display:inline-block;position:relative;}

相关文章

  • 饿了吗组件Element研究之基础篇

    1.Layout布局(栅格基础布局) 标签: el-row包裹一行,距下20px el-col,一列 用法(el...

  • ElementUI

    Element组件库 Element组件库是饿了吗官方提供的组件库,非常适合开发后台管理系统等相关类型的项目官网:...

  • Vue 后台管理项目10-单文件组件

    单文件组件 1.饿了吗Breadcrumb 面包屑 传送门http://element-cn.eleme.io/#...

  • Vue组件库大全

    基于Vue的组件库 https://github.com/ElemeFE/element" element 饿了...

  • Vue 后台管理项目3-饿了吗UI导入

    饿了吗UI导入 1.饿了吗UI安装使用 Ⅰ.安装饿了吗UI 传送门http://element-cn.eleme....

  • Vue组件库

    基于Vue的组件库 https://github.com/ElemeFE/element" element 饿了么...

  • Vue的组件库

    基于Vue的组件库 https://github.com/ElemeFE/element" element 饿了么...

  • vue相关库

    基于Vue的组件库https://github.com/ElemeFE/element" element 饿了么出...

  • vue+odoo前后端搭建

    项目所需 前端用vue的element组件 后端用odoo 1、为什么选用 element (饿了么) 源自vue...

  • Vue - day7

    day7 使用饿了么的 MintUI 组件 Mint-UI官方文档 使用 ElementUI 组件 Element...

网友评论

    本文标题:饿了吗组件Element研究之基础篇

    本文链接:https://www.haomeiwen.com/subject/yobhnttx.html