You've already forked AstralRinth
forked from didirus/AstralRinth
Move files in preparation for monorepo migration
This commit is contained in:
15
libs/omorphia/lib/index.ts
Normal file
15
libs/omorphia/lib/index.ts
Normal 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'
|
||||
Reference in New Issue
Block a user