vue markdown
A nice vue.js markdown editor.Support WYSIWYG editing mode, reading mode and so on.
一个不错的vue.js markdown编辑器,支持WYSIWYG编辑模式,阅读模式等。
Install mavon-editor
安装mavon-editor
$ npm install mavon-editor --save
package.json
package.json
"mavon-editor": "^1.3.5"
Use
用
// import with ES6
import Vue from 'vue'
import mavonEditor from 'mavon-editor'
// require with Webpack/Node.js
var Vue = require('vue')
var mavonEditor = require('mavon-editor')
// use
Vue.use(mavonEditor)
// or use with component(ES6)
import { mavonEditor } from 'mavon-editor'
export default {
components: {
mavonEditor
}
}
翻译自: https://vuejsexamples.com/mavoneditor-a-nice-vue-js-markdown-editor/
vue markdown