md-simple-editor

0.1.3 • Public • Published

markdown-editor

image

安装

yarn add md-simple-editor --save
// or
npm install md-simple-editor --save

使用

import {MarkdownViewer},MarkdownEditor from "md-simple-editor"
import emoji from 'markdown-it-emoji'

const plugins = [{
  plugin:emoji,
  option:{}
}]
<template>
...
<markdown-editor :mdOptions="{html:true}" :mdPlugins="plugins"></markdown-editor>
<markdown-viewer :value="# hello world"></markdown-viewer>
...
</template>

markdownEditor props

Name Type Default Description
v-model string 双向绑定
placeholder string 提示信息
isView boolean true 是否开启查看器
splitLineRange array [10,90] 设置编辑器和查看器的分割线的移动范围
theme Object {primaryColor: "#2196f3",hoverColor: "#cccccc50",activeColor: "#cccccc80",lineColor: "#CFD8DC",toolbarColor: "#ECEFF1",backgroundColor: "#ffffff"} 设置主题颜色
mdPlugins array [] 参考markdown-it插件使用
mdOptions object {} 参考markdown-it配置

markdownEditor event

Name params Description
getContent params
content:string 编辑器内容的
点击保存后触发事件
focus params
编辑器聚焦事件
blur params
编辑器失焦事件

Package Sidebar

Install

npm i md-simple-editor

Weekly Downloads

3

Version

0.1.3

License

none

Unpacked Size

41.3 kB

Total Files

15

Last publish

Collaborators

  • houxiang