1
0

Move files in preparation for monorepo migration

This commit is contained in:
Jai A
2024-07-03 16:21:07 -07:00
parent 11020c4545
commit 1ef8bf4690
271 changed files with 0 additions and 164 deletions

View File

@@ -0,0 +1,15 @@
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'