vue2-html5-editor
v0.6.0
Published
A WYSIWYG text editor base on html5 and vue
Readme
Forked from https://github.com/PeakTai/vue-html5-editor (Vue 1+)
Installation
Npm
npm install vue2-html5-editorimport and install as global component
var Vue = require("vue")
var editor = require("vue2-html5-editor")
Vue.use(editor, {
name: 'vue2-html5-editor'
});Usage
template code as follows
<vue2-html5-editor v-model="content" :height="500"></vue2-html5-editor>