vue项目引入markdown编辑器

安装:

npm install -d mavon-editor -s

引入(在用到它的页面引入就行):

import {mavonEditor} from 'mavon-editor'
import 'mavon-editor/dist/css/index.css'

使用:


components: {
    mavonEditor
}, 
methods: {
    change(value, html) {
        console.log(value, html)
    }
}

效果:


image.png

你可能感兴趣的:(vue项目引入markdown编辑器)