123456789101112131415 |
- import insall_common from './expose-common'
- import insall_editor from './expose-editor'
- import insall_directive from './expose-directive'
- export * from './expose-common'
- export * from './expose-editor'
- export * from './expose-directive'
- export default {
- install: app => {
- insall_directive(app)
- insall_common(app)
- insall_editor(app)
- },
- }
|