\r\n\r\nHere you can check the text is not in context (the next entry should be `Getting Started | Frameworks`):\r\n\r\n\r\n\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.vuejs.org).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[3031],{"name":3032,"color":3033},"theme","0754FB",758,"Provide text entry for `VPDocFooter`","2023-01-21T14:32:49Z","https://github.com/vuejs/vitepress/issues/758",0.68227357,{"description":3040,"labels":3041,"number":3045,"owner":3021,"repository":3022,"state":3023,"title":3046,"updated_at":3047,"url":3048,"score":3049},"### Is your feature request related to a problem? Please describe.\n\nWhen we want add a common footer section for every page, we have to add other code with \"Content component\". \r\nFor example:\r\n\r\n``` vue\r\n\u003Cdiv class='doc-content-wrapper'>\r\n \u003Cdiv class='doc-content-container'>\r\n \u003CContent\r\n ref='content'\r\n class='doc-content'\r\n @vnode-mounted='updateLink'\r\n @vnode-updated='updateLink'\r\n />\r\n \u003Cdiv class='doc-content'>\r\n \u003CVPComponentCssVar v-if='componentName'\r\n :component-name='componentName'>\u003C/VPComponentCssVar>\r\n \u003C/div>\r\n \u003CVPPageFooter />\r\n \u003CVPPageNav />\r\n \u003C/div>\r\n \u003C/div>\r\n```\n\n### Describe the solution you'd like\n\nAdd a footer and header slot to Content component.\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/coc)\n- [X] Read the [docs](https://vitepress.vuejs.org/).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/master/.github/contributing.md).\n- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[3042],{"name":3043,"color":3044},"need more info","bdbefc",543,"Please add slots for Content component.","2023-01-21T16:04:18Z","https://github.com/vuejs/vitepress/issues/543",0.68559945,{"description":3051,"labels":3052,"number":3053,"owner":3021,"repository":3022,"state":3023,"title":3054,"updated_at":3055,"url":3056,"score":3057},"### Is your feature request related to a problem? Please describe.\r\n\r\n[According to the documentation](https://vitepress.vuejs.org/guide/theme-introduction.html#extending-the-default-theme), it seems there is no slot like before or after document content.\r\n\r\nI just want to add global components such as `search box` or `breadcrumbs` on top of every document.\r\n\r\nThere is an option that I can add `\u003Cbread-crumbs />` to every `.md` documents. However, I think this is not a proper way to do it as it's used in every documents.\r\n\r\n\r\n\r\n### Describe the solution you'd like\r\n\r\nAdding a slot before or after the document content.\r\n\r\n`\u003Ctemplate #doc-before>\u003C/template>`\r\n`\u003Ctemplate #doc-after>\u003C/template>`\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.",[],762,"Slot for top or bottom of document","2023-01-21T14:34:09Z","https://github.com/vuejs/vitepress/issues/762",0.7036673,{"description":3059,"labels":3060,"number":3062,"owner":3021,"repository":3022,"state":3023,"title":3063,"updated_at":3064,"url":3065,"score":3066},"### Is your feature request related to a problem? Please describe.\n\nI've made a custom `Footer` component, but it doesn't show up very well with a sidebar.\r\nI see a sidebar conditional judgment in the 'VPFooter' component of the default theme.\r\n\r\n\n\n### Describe the solution you'd like\n\nIt would be nice to open it up.\r\n\r\n```\r\nimport { useSidebar } from 'vitepress'\r\n\r\nconst { hasSidebar } = useSidebar()\r\n```\r\n\r\n\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.vuejs.org).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[3061],{"name":3032,"color":3033},1176,"Provide useSidebar from vitepress","2023-06-29T00:04:28Z","https://github.com/vuejs/vitepress/issues/1176",0.7161997,{"description":3068,"labels":3069,"number":3073,"owner":3021,"repository":3022,"state":3023,"title":3074,"updated_at":3075,"url":3076,"score":3077},"### Describe the bug\r\n\r\n\r\n\r\n\r\n\r\n\r\n### Reproduction\r\n\r\nMy partial theme configuration is as follows:\r\n\r\n```\r\nimport DefaultTheme from 'vitepress/theme'\r\nimport { nav } from './nav'\r\nimport { sidebar } from './sidebar'\r\n\r\nexport const themeConfig: DefaultTheme.Config = {\r\n logo: '/logo.jpg',\r\n outlineTitle: '目录', // 右侧边栏的大纲标题文本\r\n lastUpdatedText: '最后更新', // 最后更新时间文本, 需配置 lastUpdated 为 true\r\n docFooter: {\r\n prev: '上一页',\r\n next: '下一页'\r\n },\r\n // 编辑链接\r\n editLink: {\r\n pattern: 'https://github.com/Charles7c/charles7c.github.io/edit/main/repos/:path',\r\n text: '在 GitHub 上编辑此页面'\r\n },\r\n ...\r\n nav, // 导航栏\r\n sidebar // 侧边栏\r\n}\r\n```\r\n\r\n### Expected behavior\r\n\r\nShow the docFooter I set up.\r\n\r\n### System Info\r\n\r\n```shell\r\nSystem:\r\n OS: Windows 10 10.0.19044\r\n CPU: (16) x64 AMD Ryzen 7 5800H with Radeon Graphics\r\n Memory: 3.69 GB / 13.87 GB\r\nBinaries:\r\n Node: 14.18.1 - D:\\Develop\\nodejs\\node.EXE\r\n Yarn: 1.22.17 - D:\\Develop\\nodejs\\node_global\\yarn.CMD\r\n npm: 6.14.15 - D:\\Develop\\nodejs\\npm.CMD\r\nBrowsers:\r\n Internet Explorer: 11.0.19041.906\r\nnpmPackages:\r\n vitepress: ^1.0.0-alpha.4 => 1.0.0-alpha.4\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.",[3070],{"name":3071,"color":3072},"bug: pending triage","e99695",1031,"The theme's docFooter configuration is invalid","2022-07-21T06:11:08Z","https://github.com/vuejs/vitepress/issues/1031",0.732854,{"description":3079,"labels":3080,"number":3082,"owner":3021,"repository":3022,"state":3023,"title":3083,"updated_at":3036,"url":3084,"score":3085},"### Is your feature request related to a problem? Please describe.\n\nRight now it’s not possible to change the text in the prev/next links that are displayed at the bottom of pages with the default theme.\r\n\u003Cimg width=\"378\" alt=\"Screenshot 2022-07-01 at 23 45 56\" src=\"https://user-images.githubusercontent.com/18370980/176971436-a1d5d9d3-2cb2-4088-a94d-69307d0b20a7.png\">\r\n \r\nThis is not very elegant when you’re working with non-English docs :)\n\n### Describe the solution you'd like\n\nI guess a `themeConfig.docFooter.[prev|next]` option, or something similar, would do the trick.\n\n### Describe alternatives you've considered\n\nOne option would be building a custom theme that extends the default one and overriding [VPDocFooter.vue](https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/components/VPDocFooter.vue), but imo this feature could also benefit a lot of users of the default theme.\n\n### Additional context\n\nThanks for being awesome!\n\n### Validations\n\n- [X] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [X] Read the [docs](https://vitepress.vuejs.org).\n- [X] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [X] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[3081],{"name":3032,"color":3033},893,"Make it possible to change the \"Previous page\" and \"Next page\" labels in the default theme","https://github.com/vuejs/vitepress/issues/893",0.73454565,{"description":3087,"labels":3088,"number":3089,"owner":3021,"repository":3022,"state":3023,"title":3090,"updated_at":3091,"url":3092,"score":3093},"### Is your feature request related to a problem? Please describe.\n\nIt would be amazing if vitepress could preload links inside the docs on hover.\n\n### Describe the solution you'd like\n\nE.g. when I hover on a sidebar link for more than 100ms, it preloads that page and renders it on click.\n\n### Describe alternatives you've considered\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Validations\n\n- [x] Follow our [Code of Conduct](https://vuejs.org/about/coc.html)\n- [x] Read the [docs](https://vitepress.dev).\n- [x] Read the [Contributing Guidelines](https://github.com/vuejs/vitepress/blob/main/.github/contributing.md).\n- [x] Check that there isn't already an issue that asks for the same feature to avoid creating a duplicate.",[],4745,"Preloading links on hover","2025-05-12T18:46:43Z","https://github.com/vuejs/vitepress/issues/4745",0.73462075,{"description":3095,"labels":3096,"number":3098,"owner":3021,"repository":3022,"state":3023,"title":3099,"updated_at":3100,"url":3101,"score":3102},"### Describe the bug\n\n当link传入的字符串是'4k',且不带后缀时,docFooter就会无限指向自身\n\n### Reproduction\n\n {\n text: \"前期\",\n collapsed: false,\n base:'/指南/热门玩法/前期/',\n items: [\n {text: '4K(待更新)', link: '4k'},\n {text: '测试', link: '热门玩法前期测试'},\n ]\n },\n\n### Expected behavior\n\ndocFooter应该能正确指向下一页或者上一页。\n\n### System Info\n\n```Text\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.",[3097],{"name":3071,"color":3072},4596,"link的参数与docFooter的联动错误","2025-03-12T04:44:45Z","https://github.com/vuejs/vitepress/issues/4596",0.7368654,{"description":3104,"labels":3105,"number":3109,"owner":3021,"repository":3022,"state":3023,"title":3110,"updated_at":3111,"url":3112,"score":3113},"### Is your feature request related to a problem? Please describe.\r\n\r\nWhen reading the docs of VitePress from beginning to end, I found that `base` is mentioned the first time in https://vitepress.vuejs.org/guide/deploying.html#github-pages , I didn't know what it was for until I found https://vitepress.vuejs.org/config/app-configs.html#base .\r\n\r\n### Describe the solution you'd like\r\n\r\nIt would be nice to briefly describe what `base` does in the [Deploying](https://vitepress.vuejs.org/guide/deploying.html) section, or at least add a link to the [App Configs](https://vitepress.vuejs.org/config/app-configs.html#base) page.\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.",[3106],{"name":3107,"color":3108},"docs","0075ca",789,"Explanation of `base`","2023-01-21T14:32:36Z","https://github.com/vuejs/vitepress/issues/789",0.7379331,["Reactive",3115],{},["Set"],["ShallowReactive",3118],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fu0veelRf9y9CfNKqGHsSzVtcczNMkPQpFAWowMZqUiE":-1},"/vuejs/vitepress/2082"]