vue 父组件访问子组件的值
给子组件加一个ref
子组件 <Editor ref="editor" :value="form.content" :minHeight="300" type="base64" :fileSize="1"></Editor> 父组件访问 this.form.content = this.$refs.editor.currentValue
子组件 <Editor ref="editor" :value="form.content" :minHeight="300" type="base64" :fileSize="1"></Editor> 父组件访问 this.form.content = this.$refs.editor.currentValue