Files
AstralRinth/libs/omorphia/lib/index.ts

16 lines
399 B
TypeScript

import * as components from './components/index.js'
import FloatingVue from 'floating-vue'
import { Plugin } from 'vue'
export const plugin: Plugin = (app) => {
for (const key in components) {
app.component(key, components[key as keyof typeof components])
}
app.use(FloatingVue)
}
export * from './components/index.js'
export * from './helpers/index.js'
import './assets/omorphia.scss'