1、使用vue指令:v-html
// content=‘<p>我是带标签的字符串</p>‘
<span v-html="content"></span>
2、使用正则表达式
// 去掉html字符串中的所有标签元素
export function delHtmlTag (str) {
return str.replace(/<[^>]+>/g, ‘‘)
}
// 使用 content=‘<p>我是带标签的字符串</p>‘
<span>{{ delHtmlTag(content) }}</span>