@orh/vue-markdown-editor
Version:
Vue markdown editor and marked
15 lines (11 loc) • 333 B
JavaScript
import MarkdownEditor from './MarkdownEditor';
import Marked from './Marked';
const install = Vue => {
Vue.component(MarkdownEditor.name, MarkdownEditor);
Vue.component(Marked.name, Marked);
};
// Auto install
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {install};