import type { App, Plugin } from 'vue' import KFileManagerPopup from './KFileManagerPopup.vue' import { registerComponent } from '@/utils/plugins' /** export button specific types */ export type * from './types' /** export button plugin */ export default { install (app: App) { registerComponent(app, 'KFileManagerPopup', KFileManagerPopup) } } as Plugin /** export button components */ export { KFileManagerPopup }