in the browser\r\n2. scroll the main nav's dropdown to the bottom in home page\r\n\n\n### Expected behavior\n\nthe result is the same as here\r\n\r\n\r\n\n\n### System Info\n\n```sh\nSystem:\r\n OS: Windows 10 Professional Edition\r\n Binaries:\r\n Node: v18.17.1\r\n npm: 9.6.7\r\n pnpm: 8.6.7\r\n Browsers:\r\n Chrome: 116.0.5845.141\r\n npmPackages:\r\n vitepress: 1.0.0-rc.10\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.",[3115],{"name":3054,"color":3055},2900,"the bottom part is hidden when main nav's dropdown is scroll to the bottom in home page","2023-09-12T00:04:15Z","https://github.com/vuejs/vitepress/issues/2900",0.8028429,{"description":3122,"labels":3123,"number":3127,"owner":3043,"repository":3044,"state":3075,"title":3128,"updated_at":3129,"url":3130,"score":3131},"### Describe the bug\n\nHow can I set my root link aka - \"/\" to redirect into \"/base\"?\r\n\r\nThere is no guide for this anywhere. Is it possible?\n\n### Reproduction\n\nHere is my config.js\r\n```\r\nexport default {\r\n title: 'ParaSpell',\r\n description: 'Make world more connected with XCM.',\r\n base: '/docs/',\r\n head: [\r\n [\r\n 'link',\r\n { rel: 'icon', type: 'image/x-icon', href: '/docs/favicon.ico' }\r\n ]\r\n ],\r\n themeConfig: {\r\n notFound: {\r\n title: 'PAGE NOT FOUND',\r\n quote: \"ParaSpell docs use \\\"/docs/\\\", make sure you have entered it.\", // set to '' to hide\r\n linkLabel: '/docs/', // aria-label\r\n linkText: 'Proceed to ParaSpell documentation',\r\n code: '404'\r\n },\r\n logo: '/paraspell.png',\r\n\r\n socialLinks: [\r\n { icon: 'github', link: 'https://github.com/paraspell' },\r\n { icon: 'twitter', link: 'https://twitter.com/paraspell' },\r\n ],\r\n sidebar: [\r\n {\r\n items: [\r\n { text: '\u003Cdiv style=\"display: flex; align-items: center;\">\u003Cspan>Welcome to\u003C/span>\u003Cimg width=\"90\" alt=\"ParaSpell logo\" src=\"https://user-images.githubusercontent.com/55763425/251588903-bcf72b05-bdf7-46d8-b804-16b0e3236792.png\" style=\"margin: 0 5px;\">\u003C/div>', link: '/' },\r\n ]\r\n },\r\n {\r\n text: '\u003Cdiv style=\"display: flex; align-items: center;\">\u003Cimg width=\"90\" alt=\"ParaSpell logo\" src=\"https://user-images.githubusercontent.com/55763425/251588903-bcf72b05-bdf7-46d8-b804-16b0e3236792.png\">\u003Cspan>XCM SDK\u003C/span>\u003C/div>',\r\n items: [\r\n { text: 'Getting started', link: '/sdk/getting-started' },\r\n { text: 'Send XCM', link: '/sdk/xcmPallet' },\r\n { text: 'Asset query', link: '/sdk/AssetPallet' },\r\n { text: 'Query XCM pallets', link: '/sdk/NodePallets' },\r\n ]\r\n },\r\n {\r\n text: ' \u003Cdiv style=\"display: flex; align-items: center;\">\u003Cimg width=\"90\" alt=\"Lightspell logo\" src=\"https://user-images.githubusercontent.com/55763425/251588168-4855abc3-445a-4207-9a65-e891975be62c.png\">\u003Cspan>XCM API\u003C/span>\u003C/div>',\r\n items: [\r\n { text: 'Getting started', link: '/api/g-started' },\r\n { text: 'XCM SDK🪄', link: '/api/xcmP' },\r\n { text: 'XCM Router☄️', link: '/api/xcmRouter' },\r\n { text: 'XCM Analyser🔎', link: '/api/xcmAnalyser' },\r\n { text: 'Upgrade request amount', link: '/api/upgrade' },\r\n { text: 'Deploy API yourself', link: '/api/deploy' },\r\n ]\r\n },\r\n {\r\n text: '\u003Cdiv style=\"display: flex; align-items: center;\">\u003Cimg width=\"90\" alt=\"Spellrouter logo\" src=\"https://raw.githubusercontent.com/paraspell/presskit/refs/heads/main/logos_spellrouter/Full%20name.png\">\u003Cspan>XCM ROUTER\u003C/span>\u003C/div>',\r\n items: [\r\n { text: 'Getting started', link: '/router/getting-strtd' },\r\n { text: 'Send routed XCM', link: '/router/router-use' },\r\n ]\r\n },\r\n {\r\n text: 'XCM analyser 🔎',\r\n items: [\r\n { text: 'Getting started', link: '/analyser/getng-strtd' },\r\n { text: 'Convert multilocations', link: '/analyser/analyser-use' },\r\n ]\r\n },\r\n {\r\n text: 'XCM visualizator 🖼️',\r\n items: [\r\n { text: 'Getting started', link: '/visualizator/getting-start' },\r\n { text: 'User guide', link: '/visualizator/user-guide' },\r\n ]\r\n },\r\n {\r\n text: 'XCM playground 🛝',\r\n items: [\r\n { text: 'Getting started', link: '/tools/playground' },\r\n\r\n ]\r\n },\r\n {\r\n text: 'Might interest you 🔭',\r\n items: [\r\n { text: 'Interesting links', link: '/links' },\r\n { text: 'List of supported chains', link: '/supported' },\r\n ]\r\n },\r\n ]\r\n }\r\n }\r\n\r\n```\r\n\r\nThe documentation is exposed at url.github.io/docs/ ... How do I fix when user uses url.github.io to redirect him into url.github.io/docs/?\n\n### Expected behavior\n\nShould redirect from root to base\n\n### System Info\n\n```Text\nMacOS\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.",[3124],{"name":3125,"color":3126},"question","5D5FAE",4429,"Using different base results into error 404 on root link","2024-12-25T04:43:22Z","https://github.com/vuejs/vitepress/issues/4429",0.8053352,{"description":3133,"labels":3134,"number":3138,"owner":3043,"repository":3044,"state":3075,"title":3139,"updated_at":3140,"url":3141,"score":3142},"### Describe the bug\r\n\r\nReferenceError: Cannot access 'xxx' before initialization When use `v-bind(xxx)` in \u003Cstyle>\r\n\r\n\r\n### Reproduction\r\n\r\n// .md\r\n\\\u003CClientOnly\\>\\\u003CTheCp \\/\\>\\\u003C\\/ClientOnly\\>\r\n\r\n// .vue script setup\r\nconst xxx = ref('0')\r\n\r\n// .vue style\r\n.test {\r\n right: v-bind(xxx);\r\n}\r\n\r\n### Expected behavior\r\n\r\nsupport v-bind in style\r\n\r\n### System Info\r\n\r\n```shell\r\nSystem:\r\n OS: Windows 10 10.0.19044\r\n CPU: (12) x64 11th Gen Intel(R) Core(TM) i5-11400F @ 2.60GHz\r\n Memory: 3.26 GB / 15.80 GB\r\n Binaries:\r\n Node: 16.13.1 - D:\\src\\node\\node.EXE\r\n Yarn: 1.22.18 - ~\\AppData\\Roaming\\npm\\yarn.CMD\r\n npm: 8.3.0 - D:\\src\\node\\npm.CMD\r\n Browsers:\r\n Edge: Spartan (44.19041.1266.0), Chromium (105.0.1343.50)\r\n Internet Explorer: 11.0.19041.1566\r\n npmPackages:\r\n vitepress: ^1.0.0-alpha.15 => 1.0.0-alpha.15\r\n```\r\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[3135],{"name":3136,"color":3137},"need more info","bdbefc",1411,"ReferenceError: Cannot access 'xxx' before initialization When use `v-bind(xxx)` in \u003Cstyle>","2023-01-21T14:25:20Z","https://github.com/vuejs/vitepress/issues/1411",0.81184006,["Reactive",3144],{},["Set"],["ShallowReactive",3147],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fjQuTEvo8CW9eT6UE4oicctAHf327XPi3_6AC2Zxn7Zc":-1},"/vuejs/vitepress/819"]