editorBundle.js 353 B

1234567891011121314151617181920212223
  1. import { VueEditor } from "vue2-editor"
  2. VueEditor.install = function (Vue) {
  3. Vue.component('vue-editor', VueEditor)
  4. }
  5. const install = function (Vue) {
  6. Vue.component('vue-editor', VueEditor)
  7. }
  8. if (typeof window !== 'undefined' && window.Vue) {
  9. install(window.Vue);
  10. }
  11. export {
  12. install,
  13. VueEditor
  14. }
  15. export default {
  16. install,
  17. VueEditor
  18. }