Modrinth/lib/index.js
2023-02-18 11:43:12 -07:00

13 lines
239 B
JavaScript

import * as components from './components'
function install (app) {
for (const key in components) {
app.component(key, components[key])
}
}
export default { install }
export * from './components'
import './assets/omorphia.scss'