我正在使用 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
}
},
})
},
},
},
});
},
})
添加至少一个内联工具栏,例如:['bold', 'italic', 'underline']
const editor = new EditorJS({
holder: 'editorjs',
inlineToolbar:['bold', 'italic', 'underline'] ,
tools: {
header: {
class: Header,
inlineToolbar: true
},
list: {
class: List,
inlineToolbar: true
}
},
})