vue3中使用富文本编辑器

下载

yarn add @wangeditor/editor @wangeditor/editor-for-vue@next

使用

<template>      
 <div style="border: 1px solid #ccc">
                
        <!-- 工具栏 -->
        <Toolbar
            :editor="editorRef"
            :defaultConfig="toolbarConfig"
            style="border-bottom: 1px solid #ccc"
        />
        <!-- 编辑器 -->
        <Editor
            v-model="valueHtml"
            :defaultConfig="editorConfig"
            style="height: 350px; overflow-y: hidden;"
            @onCreated="handleCreated"
        />
    </div>
</template>
<script setup lang="ts">
import '@wangeditor/editor/dist/css/style.css'  // 引入 css
import { onBeforeUnmount, ref, shallowRef, onMounted } from 'vue'
import { Editor, Toolbar } from '@wangeditor/editor-for-vue'
import @wangeditor/editor/dist/css/style.css

const editorRef = shallowRef()
const toolbarConfig= ref()
// 内容 HTML
const valueHtml = ref('<p></p>')


// 编辑器配置
const editorConfig = {
    placeholder: '请输入内容...',
    MENU_CONF: { /* 菜单配置,下文解释 */ }
}

const handleCreated = (editor) => {
    editorRef.value = editor // 记录 editor 实例,重要!
}

// 组件销毁时,及时销毁编辑器
onBeforeUnmount(() => {
    const editor = editorRef.value
    if (editor == null) return
    editor.destroy()
})
</script>

页面效果展示

猜你喜欢

转载自blog.csdn.net/qq_60976312/article/details/129532883