antdv Modal this.$confirm对话框 使用vnode修改标题icon问题

2021-07-08 10:18:04 浏览数 (1)

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() {
    },
}); 

0 人点赞