A Simple Markdown Editor with VueJS

simple-m-editor

A markdown editor with Vue.js

Install

yarn add simple-m-editor

use npm

npm install --save simple-m-editor

Usage with Vue.js

// you can add class "m-editor-preview" to your element to
// use the same style as the editor shows
<template>
<div>
  <m-editor
    v-model="text"
    @on-change="handleChange"
  />
  <div class="m-editor-preview" v-html="markdownContent"></div>
</div>
</template>
import mEditor from 'simple-m-editor'
import 'simple-m-editor/dist/simple-m-editor.css'
export default {
  component: {
    mEditor
  },
  data () {
    return {
      text: '',
      markdownContent: ''
    }
  },
  methods: {
    handleChange(data) {
      this.markdownContent = data.htmlContent
    }
  }
}

Preview

address

Api

props

nametypedefautldescription
valueString value
placeholderString请输入……placehoder
modeStringliveone of ['live', 'edit', 'preview']
full-screenBooleanfalsefull screen or not
show-line-numBooleantrueshow side line number or not
themeStringlightlight or dark
auto-scrollBooleantrueauto sroll or not

event

nameparamsdescription
onChangeObject: { content, htmlContent }change event

Download Details:

Author: hellomrbigshot
The Demo/Documentation: View The Demo/Documentation
Download Link: Download The Source Code
Official Website: https://github.com/hellomrbigshot/simple-m-editor
License: MIT

#vue #vuejs #markdown 

A Simple Markdown Editor with VueJS
79.15 GEEK