element自定义el-dialog标题,加图标
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
template中
<el-dialog :visible.sync="dialogTableVisible">
<div slot="title" class="dialog-title">
<i class="el-icon-edit-outline"></i>
<span class="title-text">数据详情</span>
<div class="button-right">
<span class="title-close" @click="cancel"></span>
</div>
</div>
<el-table :data="gridData">
<el-table-column property="date" label="日期" width="150"></el-table-column>
<el-table-column property="name" label="姓名" width="200"></el-table-column>
<el-table-column property="address" label="地址"></el-table-column>
</el-table>
</el-dialog>
data中
data () {
retrun: {
dialogTableVisible: false,
gridData: []
}
}
methods中:
methods: {
cancel () {
this.dialogTableVisible = false
}
}
style中:
<style>
.dialog-title {
text-align: left;
font-size: 14px;
font-weight: 700;
overflow: hidden;
}
.dialog-title i {
color: #45A4F9;
/* color: #0B2278; */
font-size: 16px;
line-height: 38px;
}
.dialog-footer {
text-align: left;
font-size: 14px;
font-weight: 700;
}
</style>
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)