\r\n\u003C/CodeRunner>\r\n\r\n:::\r\n```\r\n\r\nThe expected rendering result is\r\n\r\n\r\n\r\nThe result of rendering in vitepress is\r\n\r\n\r\n\r\nCauses disabled styles to be lost\n\n### Reproduction\n\nThe component reference address that caused the problem\r\n https://view-shadcn-ui.devlive.org/components/form/input.html#disabled\r\n \r\n\n\n### Expected behavior\n\nNone\n\n### System Info\n\n```Text\nNone\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[],4447,"vitepress will cause component styles to be lost","2025-01-09T04:43:08Z","https://github.com/vuejs/vitepress/issues/4447",0.68192476,{"description":3105,"labels":3106,"number":3110,"owner":3020,"repository":3021,"state":3080,"title":3111,"updated_at":3112,"url":3113,"score":3114},"### Describe the bug\n\nWhen I perform multi-level routing on the base path of an item, it only takes effect on one。\n\n### Reproduction\n\nhttps://github.com/RSS1102/vitepress-SidebarItem-base\n\n### Expected behavior\n\nShould the base path of the sidebar and the base of the SidebarItem be combined to splice the paths together。\r\n```diff\r\nexport default defineConfig({\r\n ignoreDeadLinks: true,\r\n themeConfig: {\r\n nav: nav(),\r\n sidebar: {\r\n++ '/A/': { base: '/A/', items: sideA() },\r\n '/B/': { base: '/B/', items: sideB() },\r\n },\r\n socialLinks: [\r\n { icon: 'github', link: 'https://github.com/RSS1102/vitepress-SidebarItem-base' }\r\n ]\r\n }\r\n})\r\n\r\nfunction nav(): DefaultTheme.NavItem[] {\r\n return [\r\n {\r\n text: 'A',\r\n link: '/A/a/index1',\r\n activeMatch: '/A/'\r\n },\r\n {\r\n text: 'B',\r\n link: 'B/b/index1',\r\n activeMatch: '/B/'\r\n },\r\n ]\r\n}\r\n\r\nfunction sideA(): DefaultTheme.SidebarItem[] {\r\n return [\r\n {\r\n text: 'a',\r\n++ base: '/a/',\r\n items: [\r\n++ { text: 'index1', link: 'index1' },\r\n { text: 'index2', link: 'index2' },\r\n ]\r\n },\r\n {\r\n text: 'b',\r\n base: '/b/',\r\n items: [\r\n { text: 'index1', link: 'index1' },\r\n { text: 'index2', link: 'index2' },\r\n ]\r\n },\r\n ]\r\n}\r\n```\r\nI want to obtain a path for the above diff: `/A/a/index1.html`,\r\nActually, `/a/index1.html`,\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 10 10.0.22621\r\n CPU: (16) x64 AMD Ryzen 7 5800H with Radeon Graphics\r\n Memory: 3.11 GB / 13.86 GB\r\n Binaries:\r\n Node: 18.12.1 - E:\\node\\node.EXE\r\n Yarn: 1.22.19 - E:\\node\\yarn.CMD\r\n npm: 9.8.0 - E:\\node\\npm.CMD\r\n pnpm: 8.7.6 - E:\\node\\pnpm.CMD\r\n Browsers:\r\n Edge: Chromium (117.0.2045.60)\r\n Internet Explorer: 11.0.22621.1\r\n npmPackages:\r\n vitepress: ^1.0.0-rc.21 => 1.0.0-rc.21\n```\n\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Check if you're on the [latest VitePress version](https://github.com/vuejs/vitepress/releases/latest).\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.dev).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[3107],{"name":3108,"color":3109},"bug: pending triage","e99695",3080,"multi-level base path problem","2023-10-20T00:04:30Z","https://github.com/vuejs/vitepress/issues/3080",0.686951,{"description":3116,"labels":3117,"number":3119,"owner":3020,"repository":3021,"state":3080,"title":3120,"updated_at":3121,"url":3122,"score":3123},"### Is your feature request related to a problem? Please describe.\r\nyes\r\n\r\n### Describe the solution you'd like\r\n\r\n```json\r\n {\r\n \"text\":\"level1\",\r\n \"collapsible\":true,\r\n \"collapsed\":false,\r\n \"items\":[\r\n {\r\n \"text\":\"level1-1\",\r\n \"collapsible\":true,\r\n \"collapsed\":false,\r\n \"items\":[\r\n {\r\n \"text\":\"level1-1-1 \",\r\n \"link\":\"/01.1\"\r\n },\r\n {\r\n \"text\":\"level1-1-2 \",\r\n \"link\":\"/01.2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\":\"level1-2\",\r\n \"collapsible\":true,\r\n \"collapsed\":false,\r\n \"items\":[\r\n {\r\n \"text\":\"level1-2-1 \",\r\n \"link\":\"/02.1\"\r\n },\r\n {\r\n \"text\":\"level1-2-2 \",\r\n \"link\":\"/02.2\"\r\n }\r\n ]\r\n }\r\n ]\r\n}\r\n\r\n```\r\n\r\n### Describe alternatives you've considered\r\n\r\n_No response_\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Validations\r\n\r\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\r\n- [X] Read the [docs](https://vitepress.vuejs.org).\r\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\r\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[3118],{"name":3031,"color":3032},926,"Support multi-level sidebar","2023-01-21T14:30:11Z","https://github.com/vuejs/vitepress/issues/926",0.6901496,["Reactive",3125],{},["Set"],["ShallowReactive",3128],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fRfSydX6L0RcFnt8MHAZdPdUXIhFW43O1Mb0kQihCoPA":-1},"/vuejs/vitepress/3147"]