\n\u003C/template>\n\n\u003Cscript setup>\n\tconst keyword = ref('');\n\n\twatchEffect(() => {\n\t\tconsole.log('🚀 ~ watchEffect ~ keyword.value:', keyword.value);\n\t});\n\u003C/script>\n```\n\n\n\n```vue\n\u003Ctemplate>\n\t\u003CUInput v-model=\"keyword\" />\n\u003C/template>\n\n\u003Cscript setup>\n\tconst keyword = ref('');\n\n\twatchEffect(() => {\n\t\tconsole.log('🚀 ~ watchEffect ~ keyword.value:', keyword.value);\n\t});\n\u003C/script>\n```\n\n### Logs\n\n```shell-script\n\n```",[2910,2911],{"name":2885,"color":2886},{"name":2871,"color":2872},2713,"UInput Component Lacks Proper Handling of compositionstart and compositionend","2024-11-21T06:40:46Z","https://github.com/nuxt/ui/issues/2713",0.75934243,{"description":2918,"labels":2919,"number":2921,"owner":2874,"repository":2875,"state":2922,"title":2923,"updated_at":2924,"url":2925,"score":2926},"### Environment\n\n- Operating System: Linux\r\n- Node Version: v18.20.3\r\n- Nuxt Version: 3.13.2\r\n- CLI Version: 3.14.0\r\n- Nitro Version: 2.9.7\r\n- Package Manager: pnpm@8.15.6\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\n\n### Version\n\nv2.18.6\n\n### Reproduction\n\nhttps://stackblitz.com/~/github.com/Yves852/nuxt-ui-commandpalette-hover\n\n### Description\n\nSelecting an element on click is visually inconsistent. Visually all elements are selected, independantly of `v-model=\"selected\"`.\r\n\r\nWith props `multiple` visually will select all or unselect all, independantly of `v-model=\"selected\"`.\r\n\r\nOn keyboard, using \"enter\" to select update selected correctly but component jump to first element. Same visual problems as mouse.\r\n\r\nThe prop `nullable` doesn't seem to influence the bug.\r\n\r\nRelated to https://github.com/nuxt/ui/issues/2284\r\nCould be related to [1708](https://github.com/nuxt/ui/issues/1708)\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2920],{"name":2885,"color":2886},2285,"closed","CommandPalette: visual item selection inconsistent","2024-11-19T15:26:05Z","https://github.com/nuxt/ui/issues/2285",0.6835328,{"description":2928,"labels":2929,"number":2934,"owner":2874,"repository":2875,"state":2922,"title":2935,"updated_at":2936,"url":2937,"score":2938},"### Description\n\nIt would be great if the Nuxt UI carousel component could support infinite scrolling, allowing users to continuously scroll through items without reaching an end. This feature is commonly seen in many modern carousels and would enhance the user experience, especially for carousels with a limited number of items or those designed for continuous looping.\n\n### Additional context\n\n_No response_",[2930,2933],{"name":2931,"color":2932},"duplicate","cfd3d7",{"name":2868,"color":2869},2286,"Add Infinite Scrolling to Nuxt UI Carousel Component","2024-10-02T09:14:42Z","https://github.com/nuxt/ui/issues/2286",0.6852235,{"description":2940,"labels":2941,"number":2947,"owner":2874,"repository":2875,"state":2922,"title":2948,"updated_at":2949,"url":2950,"score":2951},"### Description\n\nThe UPageCard component supports highlight and spotlight modes, but there’s no way to change its color dynamically. It just uses the primary color. It would be nice to be able to change this by a color prop.\n\n### Additional context\n\n_No response_",[2942,2943,2944],{"name":2868,"color":2869},{"name":2900,"color":2901},{"name":2945,"color":2946},"pro","5BD3CB",3389,"UPageCard: Allow setting color","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/3389",0.7266127,{"description":2953,"labels":2954,"number":2956,"owner":2874,"repository":2875,"state":2922,"title":2957,"updated_at":2958,"url":2959,"score":2960},"### Environment\n\nx\n\n### Version\n\nx\n\n### Reproduction\n\nx\n\n### Description\n\nWhen navigating to the Nuxt UI v2 homepage from another page within the app, it does not display and throws an error. However, if the page is reloaded directly, it loads correctly.\n\n#### Console error:\nA JavaScript error related to .map appears in the console.\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2955],{"name":2885,"color":2886},3541,"docs: v2 homepage does not display when navigating internally","2025-03-18T14:27:58Z","https://github.com/nuxt/ui/issues/3541",0.74224955,{"description":2962,"labels":2963,"number":2967,"owner":2874,"repository":2875,"state":2922,"title":2968,"updated_at":2969,"url":2970,"score":2971},"### For what version of Nuxt UI are you asking this question?\n\nv2.x\n\n### Description\n\nDoesn't it make more sense to render a `section` element on [LandingSection](https://ui.nuxt.com/pro/components/landing-section)?\n\nIf no, can I change it natively (aka without need to rewrite all the component or create my own component)?",[2964,2965,2966],{"name":2897,"color":2898},{"name":2900,"color":2901},{"name":2945,"color":2946},2437,"[Pro] Why LandingSection component render a `div` instead of a `section` element?","2024-10-22T21:02:07Z","https://github.com/nuxt/ui/issues/2437",0.7443348,{"description":2973,"labels":2974,"number":2983,"owner":2874,"repository":2874,"state":2922,"title":2984,"updated_at":2985,"url":2986,"score":2987},"### Describe the feature\n\nCurrently, `scrollToTop` can only be a boolean. Making it a function allows users to turn the auto-scrolling on/off dynamically based on different route parameters.\r\n\r\nFor example, when you have a catch-all route and you need to handle scrolling yourself on a specific route subpath, this feature will allow us to do that. \r\n\r\n```TS\r\ndefinePageMeta({\r\n scrollToTop: (route) => !route.path.startsWith('/handle-scroll-myself')\r\n})\r\n```\n\n### Additional information\n\n- [X] 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).",[2975,2977,2980],{"name":2868,"color":2976},"8DEF37",{"name":2978,"color":2979},"3.x","29bc7f",{"name":2981,"color":2982},"🍰 p2-nice-to-have","0E8A16",21738,"Allow scrollToTop page meta be dynamic with a function that receives the destination route","2023-07-30T10:07:03Z","https://github.com/nuxt/nuxt/issues/21738",0.7462213,["Reactive",2989],{},["Set"],["ShallowReactive",2992],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f7jZTyT_x657-EoXXTDCNZJD4yng1O_2MAMphXb6QTgw":-1},"/nuxt/ui/3576"]