vue-simple-markdown-editor
v1.0.1
Published
A dead simple markdown editor
Downloads
4
Readme
vue-simple-markdown-editor
A dead simple markdown editor.
Installation
npm i --save-dev vue-simple-markdown-editor
Browser
Include the script file, then install the component with Vue.use(VueEditor);
e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/vue-simple-markdown-editor/dist/editor.min.js"></script>
<script type="text/javascript">
Vue.use(VueEditor);
</script>
Module
import Editor from 'vue-simple-markdown-editor';
Usage
Once installed, it can be used in a template as simply as:
<editor></editor>