比如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:<a-icon type="smile" style="color: red"/>})
this.$message.info({content:'img',icon:<img style='width:20px;height:20px;' src="https://view.baocloud.cn:7090/custom_upload/metricType/变化量.svg"/>})
// this.$message.info({content:'imglocal',icon:"<img style='width:20px;height:20px;' src='"+self.imglocal+"'/>"})
},