icon 自定义图标(1.14.0 新增) string|()=>VNode <Icon type="question-circle"> 一、利用自带的icon赋值个默认的icon名字就可以了,但是有时候我们需要用到实底风格的icon,所以只能用()=>VNode
代码语言:javascript复制this.$confirm({
title: '确认设置当前位置为出险地点?',
content: this.infoWindow.contents,
icon: 'exclamation-circle',
onOk: () => {
this.onMapClose();
console.log('点击确认')
},
onCancel() {
},
});
二、通过()=>VNode修改
代码语言:javascript复制this.$confirm({
title: '确认设置当前位置为出险地点?',
content: this.infoWindow.contents,
icon: () => this.$createElement('a-icon', {
props: {
type: 'exclamation-circle',
theme: 'filled'
},
}),
onOk: () => {
this.onMapClose();
console.log('点击确认')
},
onCancel() {
},
});