Recommended: get @zhj-target/vue3-kind-editor from npm:
npm install @zhj-target/vue3-kind-editor --save
# or
yarn add @zhj-target/vue3-kind-editor
Then you're ready to start making your document:
import Vue3KindEditor from '@zhj-target/vue3-kind-editor'
const state = reactive({
editorText: ''
})
<vue3-kind-editor id="editor_id" height="500px" width="100%" v-model="state.editorText"
:loadStyleMode="false"></vue3-kind-editor>
The core of the component comes from kindeditor,If you want more configuration, please refer to kindeditor
After this version, the image upload server will be removed, and the images uploaded locally will be converted to Base64
Correct v-model incorrect problems