mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 06:55:35 -04:00
chore: Nuxt 4 upgrade (#7426)
This commit is contained in:
1
frontend/app/composables/forms/index.ts
Normal file
1
frontend/app/composables/forms/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { fieldTypes } from "./use-field-types";
|
||||
9
frontend/app/composables/forms/use-field-types.ts
Normal file
9
frontend/app/composables/forms/use-field-types.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export const fieldTypes = {
|
||||
TEXT: "text",
|
||||
TEXT_AREA: "textarea",
|
||||
NUMBER: "number",
|
||||
SELECT: "select",
|
||||
BOOLEAN: "boolean",
|
||||
PASSWORD: "password",
|
||||
COLOR: "color",
|
||||
} as const;
|
||||
Reference in New Issue
Block a user