import type { App } from 'vue'; import * as components from './components/components'; function install(app: App) { for (const key in components) { // @ts-expect-error any type app.component(key, components[key]); } } export default { install }; export * from './components/components'; export * from './store/auth'