@insightphp/panels
Version:
Panels component of Insight.
13 lines (10 loc) • 313 B
text/typescript
import type { App } from "vue";
import { registerComponents } from "@insightphp/inertia-view";
export interface PluginOptions {
//
}
export default {
install(app: App, options?: PluginOptions) {
registerComponents(import.meta.glob('./View/Components/**/*.vue', { eager: true }), 'insight-panels')
}
}