vue tinymce-vue回填不显示
时间: 2023-07-09 07:04:23 浏览: 103
如果您使用的是 `tinymce-vue` 的版本是 `2.x`,您可以通过以下步骤尝试解决回填不显示的问题:
1. 在 `mounted` 钩子中,将 `v-model` 绑定的值赋给 `content` 属性:
```javascript
mounted() {
this.content = this.value
}
```
2. 在 `watch` 监听器中监听 `value` 的变化,将新值赋给 `content` 属性:
```javascript
watch: {
value(newVal) {
this.content = newVal
}
}
```
3. 将 `content` 属性绑定到 `v-model` 上:
```html
<template>
<editor v-model="content" :init="initConfig" />
</template>
```
如果您的 `tinymce-vue` 版本是 `1.x`,则需要在 `mounted` 钩子中手动初始化 `editor` 才能回填内容:
```javascript
mounted() {
this.$refs.editor.initContent(this.value)
}
```
希望以上方法能够帮助您解决问题。
阅读全文