\n \u003C/UFormField>\n\u003C/template>\n```\n[Here](https://skrinshoter.ru/vSpJnffwygq) is video demonstration :)\n\n### Description\n\n`placeOpen.value = true` is not opening dropdown after fetching places.",[2867,2870,2873],{"name":2868,"color":2869},"bug","d73a4a",{"name":2871,"color":2872},"v3","49DCB8",{"name":2874,"color":2875},"triage","ffffff",2724,"nuxt","ui","open","UInputMenu property OPEN not working properly","2024-11-23T20:32:41Z","https://github.com/nuxt/ui/issues/2724",0.7086121,{"description":2885,"labels":2886,"number":2892,"owner":2877,"repository":2878,"state":2879,"title":2893,"updated_at":2894,"url":2895,"score":2896},"### Description\n\nFrom the testing I've done, it seems that the Modal component is only rendered on client side.\n\nI have a use case where a user can land on a page with a query param and a modal should be already opened on SSR.\n\nWith UI v3 the modal opens after client mounts, so it pops in/animates in to view.\n\nWould it be possible to allow modals to render on SSR?\n\n### Additional context\n\n_No response_",[2887,2890,2891],{"name":2888,"color":2889},"enhancement","a2eeef",{"name":2871,"color":2872},{"name":2874,"color":2875},3605,"Allow rendering the Modal component in SSR","2025-03-18T11:55:29Z","https://github.com/nuxt/ui/issues/3605",0.71397614,{"description":2898,"labels":2899,"number":2904,"owner":2877,"repository":2878,"state":2905,"title":2906,"updated_at":2907,"url":2908,"score":2909},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\nHello,\n\nHow to access [Neutral Palette](https://ui3.nuxt.dev/getting-started/theme#neutral-palette) classes ? (text-ui-dimmed, bg-ui-accented ...)\nTailwind CSS IntelliSense doesn't offer them, are they generated by default?\nIf not, What is the easiest way to do this?\n\nThanks in advance",[2900,2903],{"name":2901,"color":2902},"question","d876e3",{"name":2871,"color":2872},2843,"closed","Neutral Palette classes","2024-12-09T11:12:10Z","https://github.com/nuxt/ui/issues/2843",0.69354784,{"description":2911,"labels":2912,"number":2916,"owner":2877,"repository":2917,"state":2905,"title":2918,"updated_at":2919,"url":2920,"score":2921},"### Environment\n\nNA\n\n### Reproduction\n\nClick getting started, then refresh the page, it 404s...\n\n### Describe the bug\n\n404 on page refresh of non home page\r\n\r\nVideo below...\r\n\r\nhttps://iframe.mediadelivery.net/play/161467/0943c0ad-fa76-40f5-8fa5-ceabd7ef0e1a\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2913],{"name":2914,"color":2915},"documentation","9DE2BA",1383,"nuxt.com","nuxt.com broken...","2023-10-27T12:25:27Z","https://github.com/nuxt/nuxt.com/issues/1383",0.6981331,{"description":2923,"labels":2924,"number":2925,"owner":2877,"repository":2917,"state":2905,"title":2926,"updated_at":2927,"url":2928,"score":2929},"### Environment\n\n\r\nChrome : 112.0.5615.49 (arm64)\n\n### Reproduction\n\nVisiting website without closing, waiting for website redeployment。\n\n### Describe the bug\n\nThis situation occurs when accessing official website documents, and most page visits are like this. If I force the page to refresh, I will not have this problem. It may be because the official document website has just been redeployed, and my client needs to force a refresh. \r\n\r\n**I still hope to have a website that will prompt users to refresh after redeployment.**\r\n\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[],1312,"\"TypeError: Cannot read properties of null (reading 'querySelectorAll')\"","2023-10-10T14:44:48Z","https://github.com/nuxt/nuxt.com/issues/1312",0.7059004,{"description":2931,"labels":2932,"number":2935,"owner":2877,"repository":2878,"state":2905,"title":2936,"updated_at":2937,"url":2938,"score":2939},"### Description\n\nI added type of array items. It's Work as well in web but i got error warn in IDE. I use Nuxt + NuxtUi 3 + TS\n\n\n\n\n\nFor items : \n```\nconst items = ref([\n { label: \"Your Order\", slot: \"header\", type: \"label\" },\n { label: \"Item1\" },\n ]);\n```",[2933,2934],{"name":2901,"color":2902},{"name":2871,"color":2872},3456,"DropdownMenuItem type","2025-03-28T17:41:59Z","https://github.com/nuxt/ui/issues/3456",0.7106822,{"description":2941,"labels":2942,"number":2946,"owner":2877,"repository":2877,"state":2905,"title":2947,"updated_at":2948,"url":2949,"score":2950},"### Describe the feature\n\nApologies if the title is a bit confusing, but picture a dashboard application and a data call that depends on an optional field.\n```ts\n// some id linked to a control on the site\nconst itemId = ref\u003Cnumber>()\n\n// some data based on that id\nconst { data, status } = useFetch(() => `/api/items/${itemId.value}`)\n```\nIf `itemId` changes to a valid value, we want to leverage `useFetch` to automatically redownload this data. However, if `itemId` is null, we don't want to call `/api/items/undefined`.\n\nIn order to achieve this, we need to leverage an `AbortController` with interceptors:\n```ts\nconst controller = new AbortController()\nconst { signal } = controller\nconst { data, status } = useFetch(() => `/api/items/${itemId.value}`, {\n signal,\n onRequest () {\n if (!itemId.value) {\n controller.abort()\n }\n }\n})\n```\nOr, you basically need to manually trigger the execute/watch logic.\n\nNot sure if this would be held up by [this discussion on AbortController shortcut](https://github.com/unjs/ofetch/issues/23#issuecomment-1134481571), but I would expect it would be simple to add an optional option for a callback that is called between the `url` construction and actually executing the request.\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [x] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [x] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2943],{"name":2944,"color":2945},"pending triage","E99695",31406,"Add request filter to prevent fetch from being trigger in 'invalid' states","2025-04-25T15:02:34Z","https://github.com/nuxt/nuxt/issues/31406",0.71463865,{"description":2952,"labels":2953,"number":2957,"owner":2877,"repository":2878,"state":2905,"title":2958,"updated_at":2959,"url":2960,"score":2961},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.12.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: pnpm@10.6.2\n- Builder: -\n- User Config: modules, css, runtimeConfig, uiPro, compatibilityDate, devtools, future, experimental\n- Runtime Modules: @nuxt/eslint@1.2.0, @nuxt/ui-pro@3.0.0, @nuxt/content@3.3.0\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0\n\n### Reproduction\n\n```html\n\u003CProsePre lang=\"yaml\">{{ yaml }}\u003C/ProsePre>\n```\n\n\n### Description\n\nMade sure I have content installed and loaded - renders just fine, copy button shows the ✅ - but nothing is copied\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2954,2955,2956],{"name":2868,"color":2869},{"name":2871,"color":2872},{"name":2874,"color":2875},3545,"Clipboard button doesnt copy content when using ProsePre directly","2025-03-13T00:31:04Z","https://github.com/nuxt/ui/issues/3545",0.7149412,{"description":2963,"labels":2964,"number":2968,"owner":2877,"repository":2878,"state":2905,"title":2969,"updated_at":2970,"url":2971,"score":2972},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.12.0\n- Nuxt Version: 3.15.0\n- CLI Version: 3.17.2\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.14.4\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.10\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-apha.10\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/nuxt-ui3-forked-jncllj\n\n### Description\n\nRelated : https://github.com/histoire-dev/histoire/issues/702\n\nWhen a component is ULink or uses ULink (ex: UButton), Histoire doesn't work anymore.\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\nLink.vue:108 Uncaught (in promise) TypeError: Cannot destructure property 'href' of 'undefined' as it is undefined.\n at Link.vue:108:28\n at Proxy.renderFnWithContext (runtime-core.esm-bundler.js?v=896f4f1e:699:13)\n at Proxy.\u003Canonymous> (components.mjs:12:28)\n at renderComponentRoot (runtime-core.esm-bundler.js?v=896f4f1e:6521:16)\n at ReactiveEffect.componentUpdateFn [as fn] (runtime-core.esm-bundler.js?v=896f4f1e:5343:46)\n at ReactiveEffect.run (reactivity.esm-bundler.js?v=896f4f1e:198:19)\n at setupRenderEffect (runtime-core.esm-bundler.js?v=896f4f1e:5478:5)\n at mountComponent (runtime-core.esm-bundler.js?v=896f4f1e:5253:7)\n at processComponent (runtime-core.esm-bundler.js?v=896f4f1e:5206:9)\n at patch (runtime-core.esm-bundler.js?v=896f4f1e:4722:11)\n```",[2965,2966,2967],{"name":2868,"color":2869},{"name":2871,"color":2872},{"name":2874,"color":2875},3004,"ULink make Histoire crash","2025-03-28T17:36:15Z","https://github.com/nuxt/ui/issues/3004",0.7159912,{"description":2974,"labels":2975,"number":2978,"owner":2877,"repository":2917,"state":2905,"title":2979,"updated_at":2980,"url":2981,"score":2982},"- Review currently implemented empty states\n- Implement empty states as designed in Figma",[2976],{"name":2888,"color":2977},"1ad6ff",1013,"[Code] Empty states","2023-02-01T08:55:34Z","https://github.com/nuxt/nuxt.com/issues/1013",0.7197886,["Reactive",2984],{},["Set"],["ShallowReactive",2987],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$frRwGlPFazQ_oXUh-K9z6eVYrvYrU1FzcbfSCzZzrgUc":-1},"/nuxt/ui/2612"]