1.0.1 • Published 7 years ago

vue-simple-markdown-editor v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

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>