Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import { defineAsyncComponent } from 'vue'
export const defineGlobalComponents = (app) => {
const components = import.meta.globEager('./components/base/*.vue')
Object.entries(components).forEach(([path, definition]) => {
// Get name of component, based on filename
// "./components/Fruits.vue" will become "Fruits"
const componentName = path
.split('/')
.pop()
.replace(/\.\w+$/, '')
// Register component on this Vue instance
app.component(componentName, definition.default)
})
const BaseTable = defineAsyncComponent(() =>
import('./components/base/base-table/BaseTable.vue')
)
const BaseMultiselect = defineAsyncComponent(() =>
import('./components/base-select/BaseMultiselect.vue')
)
const BaseEditor = defineAsyncComponent(() =>
import('./components/base/base-editor/BaseEditor.vue')
)
app.component('BaseTable', BaseTable)
app.component('BaseMultiselect', BaseMultiselect)
app.component('BaseEditor', BaseEditor)
}