mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +00:00
16 lines
326 B
JavaScript
16 lines
326 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'
|
|
export * from './helpers'
|
|
|
|
import './assets/omorphia.scss'
|