wangEdtior查看工具栏配置,隐藏工具栏配置

在这里插入图片描述

安装

npm install @wangeditor/editor --save

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

使用

html
<template>
    <div style="border: 1px solid #ccc;">
        <Toolbar
            style="border-bottom: 1px solid #ccc"
            :editor="editor"
            :defaultConfig="toolbarConfig"
            :mode="mode"
        />
        <Editor
            style="height: 500px; overflow-y: hidden;"
            v-model="html"
            :defaultConfig="editorConfig"
            :mode="mode"
            @onCreated="onCreated"
        />
    </div>
</template>
script
<script>
import Vue from 'vue'
import { Editor, Toolbar } from '@wangeditor/editor-for-vue'

export default Vue.extend({
    components: { Editor, Toolbar },
    data() {
        return {
            editor: null,
            html: '<p>hello</p>',
            toolbarConfig: { },
            editorConfig: { placeholder: '请输入内容...' },
            mode: 'default', // or 'simple'
        }
    },
    methods: {
        onCreated(editor) {
            this.editor = Object.seal(editor) // 一定要用 Object.seal() ,否则会报错
        },
    },
    mounted() {
        // 模拟 ajax 请求,异步渲染编辑器
        setTimeout(() => {
            this.html = '<p>模拟 Ajax 异步设置内容 HTML</p>'
        }, 1500)
    },
    beforeDestroy() {
        const editor = this.editor
        if (editor == null) return
        editor.destroy() // 组件销毁时,及时销毁编辑器
    }
})
</script>

工具栏设置

                  <Editor
                      style="height: 167px; overflow-y: hidden"
                      v-model="formUserManage.dbAlbum.description"
                      :defaultConfig="editorConfig"
                      :mode="mode"
                      @onCreated="onCreated"
                      @onChange="onChange"
                    />
import { DomEditor } from "@wangeditor/editor";
    onChange(editor) {
      const toolbar = DomEditor.getToolbar(editor);

      const curToolbarConfig = toolbar.getConfig();
      console.log(curToolbarConfig.toolbarKeys); // 当前菜单排序和分组
    },
 toolbarConfig: {
        excludeKeys: [
          "headerSelect",// 标题
          "blockquote", // 引用
          "bold", // 加粗
          "underline", // 下划线
          "italic", // 斜体
          // 删除线、清除格式等
          "group-more-style",
          {
            key: "group-more-style",
            title: "更多",
            iconSvg:
              '<svg viewBox="0 0 1024 1024"><path d="M204.8 505.6…0 153.6 0 76.8 76.8 0 1 0-153.6 0Z"></path></svg>',
            menuKeys: Array(5)
          },

          "color", // 文字颜色

          "bgColor", // 背景色

          "fontSize", // 字号

          "fontFamily", // 字体

          "lineHeight", // 行高

          "bulletedList", // 无序列表

          "numberedList", // 有序列表

          "todo", // 代办
          // 对齐
          "group-justify",
          {
            key: "group-justify",
            title: "对齐",
            iconSvg:
              '<svg viewBox="0 0 1024 1024"><path d="M768 793.6v1…72.8 102.4v102.4H51.2V102.4h921.6z"></path></svg>',
            menuKeys: Array(4)
          },
          // 缩进
          "group-indent"
          {
            key: "group-indent",
            title: "缩进",
            iconSvg:
              '<svg viewBox="0 0 1024 1024"><path d="M0 64h1024v1…32h1024v128H0z m0-128V320l256 192z"></path></svg>',
            menuKeys: Array(2)
          },

          "emotion",// 表情

          "insertLink",// 插入链接
          // 上传图片
          {
            key: "group-image",
            title: "图片",
            iconSvg:
              '<svg viewBox="0 0 1024 1024"><path d="M959.877 128…l224.01-384 256 320h64l224.01-192z"></path></svg>',
            menuKeys: Array(2)
          },
          // 上传视频
          {
            key: "group-video",
            title: "视频",
            iconSvg:
              '<svg viewBox="0 0 1024 1024"><path d="M981.184 160….904zM384 704V320l320 192-320 192z"></path></svg>',
            menuKeys: Array(2)
          },

          "insertTable",// 插入表格

          "codeBlock", // 代码块

          "divider", // 分割线

          "undo", // 撤销

          "redo", // 重做

          "fullScreen" // 全屏
          ]
      }
  • 8
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值