pageContent包含一个table,其中有后台传来的关键词参数,需要高亮显示,我该如何操作?
<body v-html="pageContent"> </body>
export default {
data() {
return {
pageContent: ''
}
},
created() {
this.getData();
},
methods: {
getData() {
const formData = this.$route.params;
let htmlContent = formData.content;
let str = htmlContent.split('body')[1];
this.pageContent = str.slice(str.indexOf('>') + 1, -2);
},
}
}