\r\n\u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript setup>\r\ndefineProps({ icon: String })\r\n\u003C/script>\r\n```",[],174,"icon","Can the Base component be changed to \"NuxtIcon\" instead of \"Icon\" with the \"name\" attribute?","2024-06-26T16:45:07Z","https://github.com/nuxt/icon/issues/174",0.7509427,{"labels":3079,"number":3082,"owner":3027,"repository":3027,"state":3053,"title":3083,"updated_at":3084,"url":3085,"score":3086},[3080,3081],{"name":3021,"color":3022},{"name":3062,"color":3063},10153,"vue/multi-word-component-names eslint rule and layouts","2023-01-22T15:52:51Z","https://github.com/nuxt/nuxt/issues/10153",0.75275505,{"description":3088,"labels":3089,"number":3092,"owner":3027,"repository":3027,"state":3053,"title":3093,"updated_at":3094,"url":3095,"score":3096},"### Describe the feature\n\nHi 👋🏻 \r\n\r\nI've been migrating my Vue app to Nuxt app and found that I have to rename all of my auto imported components because nuxt doesn't support `directoryAsNamespace` option to ommit prefixing the dir name to the components.\r\n\r\nI already asked this in discord & checked the types of `components.dirs` option in `nuxt.config.ts` and it seems nuxt doesn't have this feature.\r\n\r\nI've stopped migrating assuming nuxt will add support for those who will migrate to nuxt.\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).",[3090,3091],{"name":3050,"color":3051},{"name":3037,"color":3038},22690,"✨ Add `directoryAsNamespace` option like `unplugin-vue-components`","2023-08-18T07:58:43Z","https://github.com/nuxt/nuxt/issues/22690",0.7529521,{"description":3098,"labels":3099,"number":3106,"owner":3027,"repository":3107,"state":3053,"title":3108,"updated_at":3109,"url":3110,"score":3111},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\nAccording to the documentation for using slots, we should use the following:\n\n```\n\u003Ctemplate #name-cell=\"{ row }\">\n \u003Cdiv class=\"flex items-center gap-3\">\n {{ row.original.position }}\n \u003C/div>\n\u003C/template>\n\n```\nThe `row.original` object provides access to the row data. However, in previous versions, we could also access the table index like this:\n\n`#name-cell=\"{ row, index }\"\n`\n\nThis allowed us to display a numeric sequence for the table data. With the latest version, is there a way to access an index within the table?\n",[3100,3103],{"name":3101,"color":3102},"question","d876e3",{"name":3104,"color":3105},"v3","49DCB8",2729,"ui","How Can I Get the Index When Using Slots in a Table?","2024-11-22T18:49:16Z","https://github.com/nuxt/ui/issues/2729",0.75552887,{"description":3113,"labels":3114,"number":3120,"owner":3027,"repository":3027,"state":3053,"title":3121,"updated_at":3122,"url":3123,"score":3124},"### Version\n\n[v2.4.1](https://github.com/nuxt.js/releases/tag/v2.4.1)\n\n### Reproduction link\n\n[https://gitlab.com/kcnt/resume](https://gitlab.com/kcnt/resume)\n\n### Steps to reproduce\n\n1. Add custom css module name `loaders.cssModules.localIdentName = '__custom_[name]_[local]'` in extend method in nuxt.config.js\n2. Get module rules configuration\n```js\nconst index = config.module.rules.findIndex(v =>\n v.test.toString().includes('scss')\n)\nconst scssRule = config.module.rules[index]\n```\n3. Look in `scssRule.oneOf[0].use[1].options.localIdentName` configuration (you can use console.log)\n4. This log will happen several times, but the first one `localIdentName` will be the default which is \"[local]_[hash:base64:5]\"\n5. Another log will be correct, BUT I think css already generated on the first time nuxt.config.js been run\n\n### What is expected ?\n\noutput class should be `__custom_index_header2`\n\n### What is actually happening?\n\nactually output class is `index_XXXXXX`\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This bug report is available on \u003Ca href=\"https://cmty.app/nuxt\">Nuxt\u003C/a> community (\u003Ca href=\"https://cmty.app/nuxt/nuxt.js/issues/c8655\">#c8655\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3115,3118,3119],{"name":3116,"color":3117},"stale","ffffff",{"name":3037,"color":3038},{"name":3062,"color":3063},5030,"localIdentName didn't change in scss","2023-02-14T19:00:53Z","https://github.com/nuxt/nuxt/issues/5030",0.7565867,{"description":3126,"labels":3127,"number":3130,"owner":3027,"repository":3027,"state":3053,"title":3131,"updated_at":3132,"url":3133,"score":3134},"### Describe the feature\n\nIn Nuxt 3.12, hooks using kebab-case:\r\n\r\n- `dev:ssr-logs`\r\n- `page:view-transition:start`\r\n- `nitro:build:public-assets`\r\n- (nitro) `dev:ssr-logs`\r\n\r\nHooks using camelCase:\r\n\r\n- `app:templatesGenerated`\r\n- `builder:generateApp`\r\n- `pages:routerOptions`\r\n- `server:devHandler`\r\n- `schema:beforeWrite`\r\n- `vite:extendConfig`\r\n- `vite:configResolved`\r\n- `vite:serverCreated`\r\n- `webpack:configResolved`\r\n- (nitro) `beforeResponse`\r\n- (nitro) `afterResponse`\r\n\r\nDifferent naming styles may cause some confusion, but the existing hook naming styles seem to have some patterns - using camelCase only when the hook name is the same as the function/parameter name.\r\n\r\nIf there is a clear specification or a unified naming style in the contribution guidelines, it would be great :heart:\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).",[3128,3129],{"name":3021,"color":3022},{"name":3024,"color":3025},28581,"Clarify the naming conventions for hooks","2024-08-23T09:47:33Z","https://github.com/nuxt/nuxt/issues/28581",0.75701666,["Reactive",3136],{},["Set"],["ShallowReactive",3139],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$feqPrVC00Jius8oOiZruTJ7SvsKCO6Muofw95IhuBr18":-1},"/nuxt/ui/3309"]