为什么 editor.js 工具没有出现在我的代码中?

问题描述 投票:0回答:1

我正在使用 editor.js 将文本编辑器添加到我的程序中。 Editor.js 已安装并运行,但工具未安装。我只有创建段落的功能。

import EditorJS from '@editorjs/editorjs'; 
import Header from '@editorjs/header'; 
import List from '@editorjs/list'; 

const editor = new EditorJS({ 
  /** 
   * Id of Element that should contain the Editor 
   */ 
  holder: 'editorjs', 

  /** 
   * Available Tools list. 
   * Pass Tool's class or Settings object for each Tool you want to use 
   */ 
  tools: { 
    header: {
      class: Header, 
      inlineToolbar: ['link'] 
    }, 
    list: { 
      class: List, 
      inlineToolbar: true 
    } 
  }, 
})
        },
      },
    },
  });
  }, 
})
editorjs
1个回答
0
投票

添加至少一个内联工具栏,例如:['bold', 'italic', 'underline']

const editor = new EditorJS({
    holder: 'editorjs',
    inlineToolbar:['bold', 'italic', 'underline'] ,
    tools: {
        header: {
            class: Header,
            inlineToolbar: true
        },
        list: {
            class: List,
            inlineToolbar: true
        }
    },
})
© www.soinside.com 2019 - 2024. All rights reserved.