* initial impl * merge from main * No more crashy * Almost there * fix import * fix more imports * Code cleanup, Fixed components, Added Tooltip * Added Env ind and Category pages --------- Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
15 lines
302 B
JavaScript
15 lines
302 B
JavaScript
import * as components from './components'
|
|
import FloatingVue from 'floating-vue'
|
|
|
|
function install(app) {
|
|
for (const key in components) {
|
|
app.component(key, components[key])
|
|
app.use(FloatingVue)
|
|
}
|
|
}
|
|
|
|
export default { install }
|
|
export * from './components'
|
|
|
|
import './assets/omorphia.scss'
|