MCPcopy Index your code
hub / github.com/formkit/formkit / ModuleOptions

Interface ModuleOptions

packages/nuxt/src/module.ts:30–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28]
29
30export interface ModuleOptions {
31 defaultConfig?: boolean
32 configFile?: string
33 /**
34 * When true FormKit will not install itself globally and will instead inject
35 * a `<FormKitLazyProvider>` around components that use FormKit. Additionally
36 * when true FormKit enables auto-imports for the following:
37 *
38 * - `<FormKit>`
39 * - `<FormKitProvider>`
40 * - `<FormKitMessages>`
41 * - `<FormKitSummary>`
42 * - `<FormKitSchema>`
43 * - `getNode()`
44 * - `createInput()`
45 * - `setErrors`,
46 * - `clearErrors`,
47 * - `submitForm`,
48 * - `reset`,
49 * - `FormKitNode`
50 *
51 * @experimental
52 */
53 autoImport?: boolean
54}
55
56const module: NuxtModule<ModuleOptions> = defineNuxtModule<ModuleOptions>({
57 meta: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected