UNPKG

@insightphp/forms

Version:
14 lines (11 loc) 415 B
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('./Components/**/*.vue', { eager: true }), 'insight-forms') registerComponents(import.meta.glob('./View/Components/**/*.vue', { eager: true }), 'insight-forms') } }