Wangeditor5富文本上传设置图片默认大小 eg: 设置宽度为30%
const imgRegEx = /<img.*?>/gi;
const handleChange = (editor) => {
console.log('change:', editor.getHtml())
const richText = valueHtml.value
valueHtml.value = richText.replace(imgRegEx, (match) => {
console.log(match)
return match.replace(/<img/, '<img style="width:30%;"');
});
emit('watchTxt', editor.getHtml())
}
学而不思则罔,思而不学则殆!