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添加自定义标签】

    推荐阅读