1. 程式人生 > 其它 >v-html限制圖片寬度

v-html限制圖片寬度

技術標籤:uni-appVue

在這裡插入圖片描述

onShow() {
	const regex = new RegExp('<img', 'gi');
	this.proContent= this.proContent.replace(regex, `<img style="max-width: 100%;"`);
},