This commit establishes the initial structure of the Nuxt application, centered around a new event order form. Key changes include: - Setting up the main app layout with a header, footer, and color mode support using @nuxt/ui. - Creating a multi-part event order form on the index page. - Introducing a `useEventOrder` composable to manage form state and validation with Zod. - Adding modular form components under `app/components/eventOrder`. - Including project configuration files for pnpm, VSCode, and global CSS.
25 lines
500 B
JSON
25 lines
500 B
JSON
{
|
|
"files.associations": {
|
|
"*.page-template": "vue",
|
|
"*.layout-template": "vue",
|
|
"*.vue": "vue",
|
|
"*.css": "tailwindcss"
|
|
},
|
|
"editor.quickSuggestions": {
|
|
"other": "on",
|
|
"comments": "off",
|
|
"strings": "on"
|
|
},
|
|
"tailwindCSS.classAttributes": [
|
|
"class",
|
|
"className",
|
|
"ngClass",
|
|
"class:list",
|
|
"ui"
|
|
],
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["ui:\\s*{([^)]*)\\s*}", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
|
],
|
|
"css.lint.unknownAtRules": "ignore"
|
|
}
|