index.js 386 B

123456789101112131415
  1. import insall_common from './expose-common'
  2. import insall_editor from './expose-editor'
  3. import insall_directive from './expose-directive'
  4. export * from './expose-common'
  5. export * from './expose-editor'
  6. export * from './expose-directive'
  7. export default {
  8. install: app => {
  9. insall_directive(app)
  10. insall_common(app)
  11. insall_editor(app)
  12. },
  13. }