//vue html渲染标签,绑定test方法
<div v-html="data" @click="test"></div>
//html渲染内容
//<button type="button" class="btn">按钮</button>
methods:{
//隐藏内容事件
test(event)...
12-22 2,738 views
//vue html渲染标签,绑定test方法
<div v-html="data" @click="test"></div>
//html渲染内容
//<button type="but...