-
在一个页面中渲染多个 vditor 编辑器?
2021-11-18 09:19动态绑定 id
<div id="'mdId'+index" ref="vditor></div> props:{ index:{ type:index, default:0 } } new Vditor(this.$refs.vditor,{ cache:{ enable: false //此时绑定的不是id,需要设置cache为false } })
动态绑定 id
<div id="'mdId'+index" ref="vditor></div>
props:{
index:{
type:index,
default:0
}
}
new Vditor(this.$refs.vditor,{
cache:{
enable: false //此时绑定的不是id,需要设置cache为false
}
})