\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_",[3084,3087],{"name":3085,"color":3086},"3.x","29bc7f",{"name":3067,"color":3068},27261,"Reactive object does not trigger asyncData","2024-05-17T11:17:05Z","https://github.com/nuxt/nuxt/issues/27261",0.7704759,{"description":3094,"labels":3095,"number":3099,"owner":3035,"repository":3054,"state":3076,"title":3100,"updated_at":3101,"url":3102,"score":3103},"### Description\n\nBest I can tell, @nuxtjs/color-mode is installed as a dependency of Nuxt/UI. \n\nI have been struggling to disable this for some time. I have tried different methods, cleared out Application > Storage in my browser, etc., and no matter what I do, I can't seem to figure out whether this is possible and/or what are the correct entries to `app.config.ts` or `nuxt.config.ts`. \n\nIf anyone could help that would be incredible!",[3096],{"name":3097,"color":3098},"question","d876e3",3143,"How to disable @nuxtjs/color-mode","2025-01-24T11:30:47Z","https://github.com/nuxt/ui/issues/3143",0.7796778,{"description":3105,"labels":3106,"number":3114,"owner":3035,"repository":3054,"state":3076,"title":3115,"updated_at":3116,"url":3117,"score":3118},"### Environment\n\n```\nNuxt project info: 4:13:17 PM\n\n------------------------------\n- Operating System: Linux\n- Node Version: v20.16.0\n- Nuxt Version: 3.13.2\n- CLI Version: 3.14.0\n- Nitro Version: 2.9.7\n- Package Manager: pnpm@9.7.1\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n------------------------------\n```\n\n### Version\n\n2.18.7\n\n### Reproduction\n\nhttps://ui.nuxt.com/components/button\n\n### Description\n\n\nMy issue is pretty close to https://github.com/nuxt/ui/issues/468.\n\nIt's when you switch between different types of props on a component document that this issue occurs, the first time you enter it no such issue occurs.\n\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3107,3108,3111],{"name":3045,"color":3046},{"name":3109,"color":3110},"documentation","0075ca",{"name":3112,"color":3113},"duplicate","cfd3d7",2429,"DOCS: You should use slots with \u003CContentRenderer>","2024-10-21T10:20:28Z","https://github.com/nuxt/ui/issues/2429",0.78157413,{"description":3120,"labels":3121,"number":3122,"owner":3035,"repository":3123,"state":3076,"title":3124,"updated_at":3125,"url":3126,"score":3127},"Reproduction:\r\nhttps://github.com/QaahirStewart/icontest\r\n\r\nIt seems that when icon name is bounded with access a property ex(.dot after emptyIconData) \u003CIcon :name=\"emptyIconData.logo\" /> this error is getting produced. ",[],217,"icon","Cannot read properties of undefined (reading 'startsWith')","2024-07-28T23:03:04Z","https://github.com/nuxt/icon/issues/217",0.78356844,{"description":3129,"labels":3130,"number":3122,"owner":3035,"repository":3132,"state":3076,"title":3133,"updated_at":3134,"url":3135,"score":3127},"### 🐛 The bug\n\n\r\n\r\nReproducible with 0.7.0 and upwards (due to the new unhead integration)\r\nNot reproducible in 0.6.X and lower\r\n\r\n\r\n\n\n### 🛠️ To reproduce\n\nhttps://stackblitz.com/edit/nuxt-starter-pkwfkx?file=pages%2Findex.vue\n\n### 🌈 Expected behavior\n\nReturn value of `useScript` and others should not be `any`\n\n### ℹ️ Additional context\n\n_No response_",[3131],{"name":3045,"color":3046},"scripts","Return types of `useScript` are `any` since unhead 1.1.0 integration (v0.7)","2024-09-09T18:23:29Z","https://github.com/nuxt/scripts/issues/217",{"description":3137,"labels":3138,"number":3141,"owner":3035,"repository":3142,"state":3076,"title":3143,"updated_at":3144,"url":3145,"score":3146},"",[3139],{"name":3029,"color":3140},"1ad6ff",635,"nuxt.com","[Docs] Remove `framework` from url","2022-06-20T19:44:36Z","https://github.com/nuxt/nuxt.com/issues/635",0.78761196,{"description":3148,"labels":3149,"number":3151,"owner":3035,"repository":3035,"state":3076,"title":3152,"updated_at":3153,"url":3154,"score":3155},"### Describe the feature\r\n\r\nThe current implementation of `usePreviewMode` automatically calls `refreshNuxtData()` when enabling preview mode, as well as binding a `useRouter.afterEach(() => refreshNuxtData())` callback that fires on the next route change.\r\n\r\nFor apps that do not utilize SSG, or apps that desire custom enable/disable setup or cleanup tasks, the linked PR allows passing in two new callbacks to the composable's options.\r\n\r\nI've submitted the functionality as a new PR: https://github.com/nuxt/nuxt/pull/28371\r\n\r\n### Additional information\r\n\r\n- [X] Would you be willing to help implement this feature?\r\n- [ ] Could this feature be implemented as a module?\r\n\r\n### Final checks\r\n\r\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\r\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[3150],{"name":3067,"color":3068},28370,"Allow providing custom enable/disable callbacks to `usePreviewMode`","2024-08-08T12:52:46Z","https://github.com/nuxt/nuxt/issues/28370",0.7880687,["Reactive",3157],{},["Set"],["ShallowReactive",3160],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fNZ9O53nsWlH6isgIjZIlik7WJMUgnN8ctYH3WBGxZic":-1},"/nuxt/nuxt.com/845"]