修改ant-design-vue中$message的图标

比如this.$message.info('hahahha'),默认图标是个感叹号,如果想换成自己的图标就需要添加icon参数。

icon参数支持a-icon和其他html标签,不过如果是img标签,src需要使用http网络地址,或者使用base64(比较长,不推荐),尝试使用本地图片的相对路径或者绝对路径,都不生效,显示裂图...

  test(){
       var self = this;
        this.$message.info('hahahha')
        this.$message.info({content:'hahaha',icon:})
        this.$message.info({content:'img',icon:})
        // this.$message.info({content:'imglocal',icon:""})
      },

你可能感兴趣的:(修改ant-design-vue中$message的图标)