Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 415 Bytes

readme.md

File metadata and controls

27 lines (20 loc) · 415 Bytes

Vueditor

a wysiwyg editor based on vue and vuex.

browser compatibility: IE 9+, Chrome, Firefox

online demo

How to use

import Vueditor from 'path/vueditor.min.js';

Vue.use(Vueditor, {
  // your config here
});

then in your vue template somewhere:

  <template>
    <div>
      ...
      <Vueditor></Vueditor>
    </div>
  </template>