\n ~~~~~~~\n\napp/pages/index.vue:9:22 - error TS2353: Object literal may only specify known properties, and 'modelModifiers' does not exist in type '{ readonly onBlur?: ((event: FocusEvent) => any) | undefined; readonly onChange?: ((event: Event) => any) | undefined; readonly \"onUpdate:modelValue\"?: ((payload: string) => any) | undefined; ... 24 more ...; modelValue?: string | undefined; } & VNodeProps & AllowedComponentProps & ComponentCustomProps'.\n\n9 \u003CUInput v-model.lazy=\"myText\" />\n ~~~~~\n\n\nFound 2 errors in the same file, starting at: app/pages/index.vue:8\n\n\n ERROR Process exited with non-zero status (2) 11:09:41 AM\n\n at R._waitForOutput (/root/.cache/pnpm/v3/tmp/dlx-4483/node_modules/.pnpm/nuxi@3.25.1/node_modules/nuxi/dist/chunks/main.mjs:508:13)\n at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\n at async Object.run (/root/.cache/pnpm/v3/tmp/dlx-4483/node_modules/.pnpm/nuxi@3.25.1/node_modules/nuxi/dist/chunks/typecheck.mjs:91:9)\n at async runCommand$1 (/root/.cache/pnpm/v3/tmp/dlx-4483/node_modules/.pnpm/nuxi@3.25.1/node_modules/nuxi/dist/shared/nuxi.BlFGnQYG.mjs:1767:16)\n at async runCommand$1 (/root/.cache/pnpm/v3/tmp/dlx-4483/node_modules/.pnpm/nuxi@3.25.1/node_modules/nuxi/dist/shared/nuxi.BlFGnQYG.mjs:1758:11)\n at async runMain$1 (/root/.cache/pnpm/v3/tmp/dlx-4483/node_modules/.pnpm/nuxi@3.25.1/node_modules/nuxi/dist/shared/nuxi.BlFGnQYG.mjs:1896:7) \n\n\n\n ERROR Process exited with non-zero status (2)\n```",[2940,2941],{"name":2857,"color":2858},{"name":2860,"color":2861},4166,"Built-in v-model modifiers produce type errors with v3.1.2","2025-05-22T12:51:25Z","https://github.com/nuxt/ui/issues/4166",0.71678877,{"description":2948,"labels":2949,"number":2951,"owner":2866,"repository":2866,"state":2894,"title":2952,"updated_at":2953,"url":2954,"score":2955},"### Environment\n\nIt is happening in two environments of mine\n\n------------------------------ \n- Operating System: Linux\n- Node Version: v18.20.3\n- Nuxt Version: 3.13.2\n- CLI Version: 3.14.0\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.2.3\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n------------------------------\n- Operating System: Windows_NT\n- Node Version: v22.3.0\n- Nuxt Version: 3.13.2\n- CLI Version: 3.14.0\n- Nitro Version: 2.9.7\n- Package Manager: yarn@1.22.22\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n------------------------------\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-starter-ltkw9t?file=app%2Fpages%2Findex.vue&file=app%2Fcomponents%2Fsidebar.vue\n\n### Describe the bug\n\nI have a page and a component pointing to some data on a composable, and they point to it in the exact same way. But in one place, it is reactive, and in another place it is not. On component it works fine, but not on page. There it is not reactive.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2950],{"name":2877,"color":2878},29610,"Reactivity with different behaviour in Pages vs Components","2024-10-25T10:30:34Z","https://github.com/nuxt/nuxt/issues/29610",0.7169337,{"description":2957,"labels":2958,"number":2961,"owner":2866,"repository":2866,"state":2894,"title":2962,"updated_at":2963,"url":2964,"score":2965},"### Environment\r\n\r\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v20.12.2\r\n- Nuxt Version: 3.11.2\r\n- CLI Version: 3.11.1\r\n- Nitro Version: 2.9.6\r\n- Package Manager: pnpm@8.15.6\r\n- Builder: -\r\n- User Config: srcDir, devtools, modules, ignore, appConfig, css, extensions, routeRules, vue, nitro, runtimeConfig, auth, colorMode, router, csurf\r\n- Runtime Modules: @nuxt/eslint@0.3.12, @nuxt/test-utils/module@3.12.1, @unocss/nuxt@0.60.0, @sidebase/nuxt-auth@0.7.2, @nuxt/ui@2.16.0, @pinia/nuxt@0.5.1, nuxt-csurf@1.5.2\r\n- Build Modules: -\r\n------------------------------\r\n\r\n\r\n### Reproduction\r\n\r\n```\r\n\u003Ctemplate>\r\n\t\u003CUSelectMenu\r\n\t\tv-model=\"eventTypeFilter.selected\"\r\n\t\t:options=\"eventTypeFilter.options\"\r\n\t\tsearchable\r\n\t\tmultiple\r\n\t\tplaceholder=\"Event type filter\" />\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\nconst page = ref(1)\r\nconst eventTypeFilter = reactive({\r\n options: ['a', 'b', 'c'],\r\n selected: []\r\n})\r\n\r\nconst { data, pending } = await useAsyncData(\r\n 'events',\r\n () => $fetch('/api/events', {\r\n params: {\r\n page: page.value,\r\n eventTypeFilter: eventTypeFilter.selected\r\n }\r\n }),\r\n {\r\n watch: [page, eventTypeFilter.selected]\r\n }\r\n)\r\n\u003C/script>\r\n```\r\n\r\n### Describe the bug\r\n\r\nchoosing a value does not trigger another fetch\r\n\r\n### Additional context\r\n\r\nIf I use a ref array for the model and pass that to the watcher, it works\r\n`const selectedEventTypes = ref([])`\r\n\r\n### Logs\r\n\r\n_No response_",[2959,2960],{"name":2888,"color":2889},{"name":2877,"color":2878},27261,"Reactive object does not trigger asyncData","2024-05-17T11:17:05Z","https://github.com/nuxt/nuxt/issues/27261",0.7184935,{"description":2967,"labels":2968,"number":2971,"owner":2866,"repository":2866,"state":2894,"title":2972,"updated_at":2973,"url":2974,"score":2975},"### Environment\r\n\r\n------------------------------\r\n- Operating System: Windows_NT\r\n- Node Version: v20.12.0\r\n- Nuxt Version: 3.12.2\r\n- CLI Version: 3.12.0\r\n- Nitro Version: 2.9.6\r\n- Package Manager: pnpm@9.4.0\r\n- Builder: -\r\n- User Config: devtools\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/github-bhndpd?file=app.vue\r\n\r\n### Describe the bug\r\n\r\nI have created a `\u003CTypedField>` component to provide correct typing for `field.state.value` property when used.\r\n\r\nto test that the typing works, you can add `age: 2` to the `defaultValues'\r\n\r\n\r\n\r\nnow the LSP suggests that all `field.state.value` is `string | number`\r\n\r\n\r\n\r\nthe `\u003CTypedField>` component fixes it\r\n\r\n\r\n\r\nyou can also test that the dev mode works by running `pnpm dev`\r\n\r\n\r\n\r\nhowever, after you build the app with `pnpm build` and then `pnpm preview` the app, it crashes with the following error\r\n\r\n\r\n\r\n\r\n### Additional context\r\n\r\nI am not sure whether this is Nuxt or Tanstack Form issue, but since the discrepancy is caused by `pnpm build` which is a Nuxt command, I am posting the report here. Please let me know if I have incorrectly located the issue.\r\n\r\n### Logs\r\n\r\n_No response_",[2969,2970],{"name":2888,"color":2889},{"name":2877,"color":2878},27866,"Built app behaves differently than in dev mode","2024-07-04T11:01:45Z","https://github.com/nuxt/nuxt/issues/27866",0.7202896,["Reactive",2977],{},["Set"],["ShallowReactive",2980],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f0ite1Atmud8NXGhkp4-4ZtNVPjLPqXxAwblW4VmjleU":-1},"/nuxt/ui/4238"]