Markdown Editor component for Vue.js. Support only vue2.x.
No longer support Vue1.x, you can modify to use
npm install vue-simplemde --save
- Internal reference in a single component
<template>
<markdown-editor v-model="content" ref="markdownEditor"></markdown-editor>
</template>
<script>
import markdownEditor from 'vue-simplemde/src/markdown-editor'
export default {
components: {
markdownEditor
}
}
</script>
<style>
@import '~easymde/dist/easymde.min.css';
</style>
- Global reference
import Vue from 'vue'
import VueSimplemde from 'vue-simplemde'
import 'easymde/dist/easymde.min.css';
Vue.use(VueSimplemde)
property | type | default | describe |
---|---|---|---|
value | String | None | Initial value, v-model binding can be used |
name | String | None | The name of the control. |
preview-class | String | None | Custom preview style class |
autoinit | Boolean | true | Automatic initialization |
highlight | Boolean | false | Is it open to highlight |
sanitize | Boolean | false | HTML that does not render input after opening |
configs | Object | {} | SimpleMDE's config |
e.g. use Github's markdown style
$ npm install --save github-markdown-css
<template>
<markdown-editor preview-class="markdown-body"></markdown-editor>
</template>
<style>
@import '~easymde/dist/easymde.min.css';
@import '~github-markdown-css';
</style>
$ npm install --save highlight.js
<template>
<markdown-editor :highlight="true"></markdown-editor>
</template>
<script>
import hljs from 'highlight.js';
window.hljs = hljs;
</script>
<style>
@import '~easymde/dist/easymde.min.css';
@import '~highlight.js/styles/atom-one-dark.css';
/* Highlight theme list: https://github.com/isagalaev/highlight.js/tree/master/src/styles */
</style>
Editor Theme (simplemde-theme-base) [deprecated?]
e.g. use simplemde-theme-base theme
$ npm install --save simplemde-theme-base
<style>
@import '~simplemde-theme-base/dist/simplemde-theme-base.min.css';
/* no need import simplemde.min.css */
</style>
SimpleMD's config
vue-simplemde is open source and released under the MIT Licence.
Copyright (c) 2018 F-loat