Vue.jsでEditor.jsプラグインを使いたい
メモ
家に帰ったら正式なやつ書く
取り敢えず導入まで
インストールする
$ npm install @editorjs/editorjs
or
$ yarn add @editorjs/editorjs
呼び出す
<template>
<div class="hoge">
<div id="codex-editor" />
</div>
</template>
<script>
import EditorJS from '@editorjs/editorjs'
export default {
data() {
return {
editor: {}
}
},
methods: {
// Editor.js関連
doEditor() {
this.editor = new EditorJS({
holder: 'codex-editor',
})
}
},
mounted() {
this.doEditor()
}
}
</script>