\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```",[1984,1987],{"name":1985,"color":1986},"bug","d73a4a",{"name":1988,"color":1989},"triage","ffffff",2713,"nuxt","ui","open","UInput Component Lacks Proper Handling of compositionstart and compositionend","2024-11-21T06:40:46Z","https://github.com/nuxt/ui/issues/2713",0.6675109,{"description":1999,"labels":2000,"number":2008,"owner":1991,"repository":1992,"state":1993,"title":2009,"updated_at":2010,"url":2011,"score":2012},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.12.0\n- Nuxt Version: - (using vue@latest)\n- CLI Version: 3.15.0\n- Nitro Version: -\n- Package Manager: pnpm@9.0.4\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n### Version\n\nv3.0.0-alpha.8\n\n### Reproduction\n\nhttps://github.com/zugende/nuxt-ui-type-error-repro\n\n### Description\n\nWhen creating a fresh standalone Vue app using `pnpm create vue@latest` and then installing nuxt/ui by following the instructions here: https://ui3.nuxt.dev/getting-started/installation/vue one get type errors during the build process running `pnpm build`.\n\n👀 Update 15. Nov: Workaround is to disable type-check in your build command\n``` bash\n❌ \"build\": \"run-p type-check \\\"build-only {@}\\\" --\",\n✅ \"build-only\": \"vite build\",\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n// more than 160 errors (shortened)\n\nnode_modules/.pnpm/@nuxt+ui@3.0.0-alpha.8_@babel+parser@7.26.2_embla-carousel@8.3.1_rollup@4.24.4_typescript@5.6_yljlai3w6pxxgcxew5prmihdom/node_modules/@nuxt/ui/dist/runtime/components/Tabs.vue:5:24 - error TS2307: Cannot find module '#build/app.config' or its corresponding type declarations.\n\n5 import _appConfig from '#build/app.config'\n ~~~~~~~~~~~~~~~~~~~\n\nnode_modules/.pnpm/@nuxt+ui@3.0.0-alpha.8_@babel+parser@7.26.2_embla-carousel@8.3.1_rollup@4.24.4_typescript@5.6_yljlai3w6pxxgcxew5prmihdom/node_modules/@nuxt/ui/dist/runtime/components/Textarea.vue:4:24 - error TS2307: Cannot find module '#build/app.config' or its corresponding type declarations.\n\n4 import _appConfig from '#build/app.config'\n ~~~~~~~~~~~~~~~~~~~\n\n[.....]\n\nFound 165 errors.",[2001,2002,2005],{"name":1985,"color":1986},{"name":2003,"color":2004},"v3","49DCB8",{"name":2006,"color":2007},"vue","42b883",2560,"Vue Vite plugin is causing type errors","2025-03-17T11:12:19Z","https://github.com/nuxt/ui/issues/2560",0.6760231,{"description":2014,"labels":2015,"number":2020,"owner":1991,"repository":1992,"state":1993,"title":2021,"updated_at":2022,"url":2023,"score":2024},"- [x] Pagination\n- [ ] Row Pinning\n- [ ] Grouping\n- [ ] Virtualization\n- ...\n\n\n",[2016,2019],{"name":2017,"color":2018},"enhancement","a2eeef",{"name":2003,"color":2004},2441,"[Table] Implement more TanStack Table features","2025-03-15T10:42:13Z","https://github.com/nuxt/ui/issues/2441",0.74955857,{"description":2026,"labels":2027,"number":2028,"owner":1991,"repository":2029,"state":1993,"title":2030,"updated_at":2031,"url":2032,"score":2033},"Hi there. Is there any way we could add a feature that minifies the CSS generated by this plugin and/or then extracts the code to a single separate CSS file, rather than having it all output in the ```\u003Chead>``` element?\n\nEven with...\n```javascript\nvite: {\n\tbuild: {\n\t\t\tassetsInlineLimit: 0, // default is 4096 (4 KiB); threshold to inline assets as base64 URLs\n\t\t\tcssCodeSplit: false, // if false, all CSS in the entire project will be extracted into a single CSS file\n\t}\n}\n``` \n...in my ```nuxt.config.ts``` file, the icon-related CSS code from this plugin still gets output onto my pages un-minified *and* un-extracted.\n\nThanks. :-)\n",[],327,"icon","Don't force CSS to be inline","2024-12-22T00:14:16Z","https://github.com/nuxt/icon/issues/327",0.75074935,{"description":2035,"labels":2036,"number":2040,"owner":1991,"repository":1992,"state":2041,"title":2042,"updated_at":2043,"url":2044,"score":2045},"### Description\n\nI have the code below in my `\u003Cscript setup lang=\"ts\">`:\n```ts\nconst links = ref\u003CDashboardSidebarLink[]>([\n {\n label: \"Learn & Explore\",\n labelClass: \"text-gray-400 dark:text-gray-500\",\n collapsible: false,\n children: [\n {\n icon: \"i-heroicons-academic-cap\",\n label: \"Get Started\",\n href: \"https://www.example.com/docs\",\n target: \"_blank\",\n external: true,\n },\n {\n icon: \"i-heroicons-rectangle-stack\",\n label: \"Projects\",\n to: Routes.PROJECTS,\n },\n {\n icon: \"i-heroicons-rectangle-group\",\n label: \"Datasets\",\n to: Routes.DATASETS,\n },\n ],\n },\n]);\n```\n\nThis is how I use the `link` variable in the `\u003Ctemplate>`:\n```html\n\u003CUDashboardSidebarLinks :links=\"links\" />\n```\n\nI expected the \"Get Started\" to be rendered as an `\u003Ca>` tag but it is still rendered as a `\u003Cbutton>` tag (and it doesn't work)...\n\n",[2037],{"name":2038,"color":2039},"question","d876e3",3532,"closed","External DashboardSidebarLink","2025-03-12T13:19:35Z","https://github.com/nuxt/ui/issues/3532",0.6849294,{"description":2047,"labels":2048,"number":2049,"owner":1991,"repository":2050,"state":2041,"title":2051,"updated_at":2052,"url":2053,"score":2054},"### Environment\r\n\r\nN/A\r\n\r\n### Reproduction\r\n\r\nN/A\r\n\r\n### Describe the bug\r\n\r\nGoing to https://nuxt.com/modules/tailwindcss resulted in this:\r\n\r\n\u003Cimg width=\"573\" alt=\"image\" src=\"https://github.com/nuxt/nuxt/assets/26592486/c1018a94-852c-46f2-ae1b-2c42f83028e4\">\r\n\r\n**ID as Text**: `cle1::k9s6r-1697123779540-48474018b10e`\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[],1368,"nuxt.com","nuxt.com 504: GATEWAY_TIMEOUT","2023-10-18T11:04:15Z","https://github.com/nuxt/nuxt.com/issues/1368",0.6873543,{"description":2056,"labels":2057,"number":2058,"owner":1991,"repository":2059,"state":2041,"title":2060,"updated_at":2061,"url":2062,"score":2063},"in [module testing docs](https://test-utils.nuxtjs.org/api-reference/module-testing) page It only shows the following options:\r\n- `addPlugin`\r\n- `addLayout` \r\n- `addErrorLayout`\r\n- `addServerMiddleware` \r\n- `requireModule`\r\n\r\nBut the `addModule` option is not documented although it can be used!",[],449,"test-utils","Module testing page is missing the \"addModule\" option","2023-12-02T00:13:11Z","https://github.com/nuxt/test-utils/issues/449",0.7040286,{"description":2065,"labels":2066,"number":2069,"owner":1991,"repository":2050,"state":2041,"title":2070,"updated_at":2071,"url":2072,"score":2073},"",[2067],{"name":1985,"color":2068},"ff281a",411,"When first going to a project, the `default_branch` is not selected but instead the first element in array","2023-02-15T12:32:16Z","https://github.com/nuxt/nuxt.com/issues/411",0.72037977,{"description":2075,"labels":2076,"number":2078,"owner":1991,"repository":2050,"state":2041,"title":2079,"updated_at":2080,"url":2081,"score":2082},"\n\nhttps://nuxt.com/design-kit",[2077],{"name":1985,"color":2068},1516,"[design kit] Color boxes are broken","2024-03-03T09:33:13Z","https://github.com/nuxt/nuxt.com/issues/1516",0.721969,{"description":2084,"labels":2085,"number":2086,"owner":1991,"repository":2087,"state":2041,"title":2088,"updated_at":2089,"url":2090,"score":2091},"The `fontsource` provider gets the variable weights range from the `weights` field.\r\nBut it should get it from the endpoint `https://api.fontsource.org/v1/variable/{id}`.\r\nAs it is described in the docs [https://fontsource.org/docs/api/variable](https://fontsource.org/docs/api/variable)\r\n\r\nNow, for example, `Roboto Flex` is generated with `weight: 400 400` instead of `weight: 100 1000`\r\n[https://api.fontsource.org/v1/variable/roboto-flex](https://api.fontsource.org/v1/variable/roboto-flex)",[],193,"fonts","bug: fontsource variable weight","2024-07-12T07:39:17Z","https://github.com/nuxt/fonts/issues/193",0.7293802,["Reactive",2093],{},["Set"],["ShallowReactive",2096],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"wPM67in73xGabU8E8LVEBUQWkFJeM-XvtPtRrlgBPrc":-1},"/nuxt/ui/2827"]