博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
element-ui学习
阅读量:4953 次
发布时间:2019-06-12

本文共 969 字,大约阅读时间需要 3 分钟。

1.

行:el-row
列:el-col
例:
<el-row>
<el-col :span="20"><div class="grid-content bg-purple-dark"></div></el-col>
<el-col :span="4"><div class="grid-content bg-purple"></div></el-col>
</el-row>

col 组件的 offset 属性可以指定分栏偏移的栏数

2.

实例化Vue
方法一:最常用的方法
var app=new vue({
el:"#app",
data(){}
})

方法二:$mount 手动挂载(挂载到某个dom)

var app=new vue({
data(){}
})
app.$mount("#app")

3.

<el-container>:外层容器。当子元素中包含 <el-header> 或 <el-footer> 时,全部子元素会垂直上下排列,否则会水平左右排列。

<el-header>:顶栏容器。

<el-aside>:侧边栏容器。

<el-main>:主要区域容器。

<el-footer>:底栏容器。

子元素中有 el-header 或 el-footer 时为 vertical,否则为 horizontal

4.

table
prop="name"

5.

:xs="24" :sm="8" :lg="6" :xl="6"
响应式布局-兼容多个终端

6.

inline 属性可以让表单域变为行内的表单域

7.

highlight-current-row 高亮显示
stripe 斑马纹
sort-change 当表格的排序条件发生变化的时候会触发该事件
el-table元素中定义了height属性,即可实现固定表头的表格,而不需要额外的代码

show-overflow-tooltip 表格里数据过长时,省略号显示

text-overflow="ellipsis" 同上 CSS

effect="light" effect 默认提供的主题 String dark/light dark

 

如果错误,请指出,谢谢!

转载于:https://www.cnblogs.com/liuyj-dev/p/9967706.html

你可能感兴趣的文章
关于“企业家才能”
查看>>
《玩转.NET Micro Framework 移植-基于STM32F10x处理器》--微软中国.NET Micro Framework项目组工程师所作之序...
查看>>
Yii2.0手册地址
查看>>
3. gulp安装和使用
查看>>
token 小记
查看>>
Android 绑定类型服务---其他注意事项
查看>>
hdu--1081--最大子矩阵和
查看>>
hdu--2848--未解决
查看>>
HDU 5943 Kingdom of Obsession 二分图的匹配
查看>>
iOS 播放GIf图, 动态效果
查看>>
poj 1703 Find them, Catch them (并查集)
查看>>
SQL Server Execute Package Utility Version 10.50.2500.0 for 64-bit
查看>>
compilation debug= true targetframework= 4.0 / configuration error
查看>>
数据结构:分块-区间众数查询
查看>>
使用四阶龙格库塔方法求解三体问题(解十二元一阶常微分方程组)
查看>>
搜索:N皇后
查看>>
BlockingQueue and BlockingDeque
查看>>
paython3-练习
查看>>
练习3:参数值传递的汇编实质
查看>>
弹出键盘时UITableview内容跟着上移,不至于被键盘挡住,导致UITableView内容显示不完...
查看>>