element confrim添加自定义标签
const h = this.$createElement;
this.$confirm(
提示,
{
title: that.$t('confirm.information'),
message: h('div', null, [
h('span', null, '删除'),
h('br', null, ''),
h('div', {
// 普通html特性
// 相当于`v-bind:style`
style: {
'margin-top': '5px',
color: '#FF7D7C',
fontSize: '12px',
background: '#FFEBEB',
padding: '5px',
},
},
'删除'
]),
showCancelButton: true,
confirmButtonText: this.$t('confirm.confirm'),
cancelButtonText: this.$t('confirm.cancel'),
type: 'warning'
}
).then((result) => {}
}
});
【element confrim添加自定义标签】
推荐阅读
- 基于|基于 antd 风格的 element-table + pagination 的二次封装
- 编写字典程序
- 怎么将桌面上的CAD图纸添加到软件中进行BMP格式转换()
- 2147483647与int型
- 怎样把一个字典的数据添加到另一个字典中()
- 培养习惯的倦怠期可以添加变化~74
- 如何在Kubernetes|如何在Kubernetes 里添加自定义的 API 对象(一)
- element源码学习二(dev)
- Ubuntu|Ubuntu 下添加开机启动脚本
- Android|Android Room 的坑