import { App } from 'vue' import * as components from './components' function install (app: App) { for (const key in components) { // @ts-expect-error ts(7053) app.component(key, components[key]) } } import './assets/main.scss' export default { install } export * from './components' export * from './constants' export * from './utils'