vue实现富文本编辑器的具体方法

可以实现富文本的插件:vue-quill-editoreditor-for-vue

我们以 editor-for-vue 为例实现:

传送门:wangEditor官网地址

安装:

npm install @wangeditor/editor --save
npm install @wangeditor/editor-for-vue --save

具体使用方法:
引入样式及组件

<template>
    <div style="border: 1px solid #ccc">
      <Toolbar
        style="border-bottom: 1px solid #ccc"
        :editor="editor"
        :defaultConfig="toolbarConfig"
        :mode="mode"
      />
      <Editor
        :disabled="disabled"
        style="height: 500px; overflow-y: hidden;"
        v-model="html"
        :defaultConfig="editorConfig"
        :mode="mode"
        @onCreated="handleCreated"
      />
    </div>
</template>

<script>
import '@wangeditor/editor/dist/css/style.css'
import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
export default {
    components: { Editor, Toolbar },
    // props
    data() {
        return {
            isView: true,
            editor: null,
            disabled: true,
            html: '<p>hello</p>',
            toolbarConfig: { },
            editorConfig: { placeholder: '请输入内容...' },
            mode: 'simple', // or 'default'
        }
    },
    methods: {
        handleCreated(editor) {
            this.editor = Object.seal(editor) // 一定要用 Object.seal() ,否则会报错
            // 实现编辑器的禁用
            if(this.isView){
                this.editor.disable()
            }
        },
    },
    beforeDestroy() {
        const editor = this.editor
        if (editor == null) return
        editor.destroy() // 组件销毁时,及时销毁编辑器
    }
}
</script>

<style>

</style>

实现效果:
在这里插入图片描述

上一篇:传统海外仓的管理模式有什么缺点?使用位像素海外仓系统的海外仓有什么优势?


下一篇:Stable Diffusion|Ai赋能电商 Inpaint Anything