已解决iView-admin Editor 组件 绑定默认值问题
Posted yanzhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已解决iView-admin Editor 组件 绑定默认值问题相关的知识,希望对你有一定的参考价值。
iView-admin Editor 组件 绑定默认值问题
发现 editor 组件,设置v-model 后, 修改 v-model 数据, editor组件没有自动渲染,需要手动设置渲染
this.$refs.editor.setHtml(this.model.description)
<template>
<div>
<editor v-model="model.description" ref="editor" :cache="false"/>
</div>
</template>
<script>
import Editor from ‘_c/editor‘
export default {
components: { Editor },
data () {
return {
model: { description: ‘‘ }
}
},
methods: {
Bind () {
// 模拟ajax读取数据绑定
this.model.description = ‘hello word‘
this.$refs.editor.setHtml(this.model.description) // 加上这句才可以
}
},
mounted () {
this.Bind()
}
}
</script>
以上是关于已解决iView-admin Editor 组件 绑定默认值问题的主要内容,如果未能解决你的问题,请参考以下文章