<vue-ueditor-wrap editor-id="editorViewId" v-model="form.content" :config="ueditorConfig"
></vue-ueditor-wrap>
export default ({
components: { VueUeditorWrap },
data: function() {
return {
ueditorConfig: {
// 如果需要上传功能,找后端小伙伴要服务器接口地址
serverUrl: 'http://localhost:6080/emsys/api/v1/ueditor',
// 你的UEditor资源存放的路径,相对于打包后的index.html
UEDITOR_HOME_URL: '/ueditor/',
// 编辑器不自动被内容撑高
}
}
})
在js方法中设置:
this.ueditorConfig.readonly = false