\r\n \u003Ctitle>\u003C/title>\r\n \u003Cstyle>\r\n /*申明字体*/\r\n @font-face {\r\n font-family: \"iconfont\";\r\n src: url(\"font/iconfont.eot\"); /* IE9*/\r\n src: url(\"font/iconfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\r\n url(\"font/iconfont.woff\") format(\"woff\"),\r\n /* chrome、firefox */ url(\"font/iconfont.ttf\") format(\"truetype\"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/\r\n url(\"font/iconfont.svg#iconfont\") format(\"svg\"); /* iOS 4.1- */\r\n }\r\n\r\n p {\r\n width: 200px;\r\n border: 1px solid #000;\r\n line-height: 60px;\r\n font-size: 30px;\r\n margin: 100px auto;\r\n text-align: center;\r\n position: relative;\r\n }\r\n\r\n .icon::before {\r\n content: \"\\e628\";\r\n font-family: iconfont;\r\n color: red;\r\n }\r\n\r\n span {\r\n position: relative;\r\n }\r\n \u003C/style>\r\n \u003C/head>\r\n \u003Cbody>\r\n \u003Cp class=\"icon\">扫码付款\u003C/p>\r\n \u003Cspan class=\"icon\">我是span\u003C/span>\r\n \u003Cdiv class=\"icon\">divvvvvvvvvvv\u003C/div>\r\n \u003C/body>\r\n\u003C/html>\r\n```\r\nIf this is a markdown verification error, can we make Vitepress more compatible with this type of error, or can we have a switch to enable this function\n\n### Reproduction\n\nnothing\n\n### Expected behavior\n\nsucceeful build\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 10 10.0.19045\r\n CPU: (6) x64 Intel(R) Core(TM) i5-8400 CPU @ 2.80GHz\r\n Memory: 2.88 GB / 15.85 GB\r\n Binaries:\r\n Node: 18.20.3 - C:\\Program Files\\nodejs\\node.EXE \r\n Yarn: 1.22.22 - ~\\AppData\\Roaming\\npm\\yarn.CMD \r\n npm: 10.7.0 - C:\\Program Files\\nodejs\\npm.CMD \r\n pnpm: 8.15.7 - C:\\Program Files\\nodejs\\pnpm.CMD \r\n bun: 1.1.21 - ~\\.bun\\bin\\bun.EXE\r\n Browsers:\r\n Chrome: 128.0.6613.120\r\n Edge: Chromium (127.0.2651.74)\r\n Internet Explorer: 11.0.19041.4355\r\n npmPackages:\r\n vitepress: ^1.3.1 => 1.3.1\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.",[2884],{"name":2885,"color":2886},"bug: pending triage","e99695",4188,"closed","Element is missing end tag.","2024-09-16T04:43:59Z","https://github.com/vuejs/vitepress/issues/4188",0.6312094,{"description":2894,"labels":2895,"number":2899,"owner":2874,"repository":2875,"state":2888,"title":2900,"updated_at":2901,"url":2902,"score":2903},"### Describe the bug\n\nThis is the error:\r\n\r\n[vite] Internal server error: Element is missing end tag. \r\n Plugin: vite:vue\r\n File: D:/桌面/学习笔记/doc/docs/rust/Rust基础/4.枚举.md:93:33\r\n 91 | let girl = Gender::Girl(girl1);\r\n 92 | \r\n 93 | boys.run(String::from(\"男孩们\")); // 男孩们 跑得很快\r\n | ^\r\n 94 | girl.run(String::from(\"小女孩\")); // 小女孩 跑得很快\r\n 95 | }\r\n\r\n\r\nAnd my code like these: \r\n\r\n```rust\r\nenum Gender {\r\n Boy(String, String, String),\r\n Girl(String),\r\n}\r\n\r\nimpl Gender {\r\n fn run(&self, gender: String) {\r\n println!(\"{} 跑得很快\", gender);\r\n }\r\n}\r\n\r\nfn main() {\r\n let boy1 = String::from(\"大锤\");\r\n let boy2 = String::from(\"中风\");\r\n let boy3 = String::from(\"小明\");\r\n let girl1 = String::from(\"小红\");\r\n\r\n let boys = Gender::Boy(boy1, boy2, boy3);\r\n let girl = Gender::Girl(girl1);\r\n\r\n boys.run(String::from(\"男孩们\")); // 男孩们 跑得很快\r\n girl.run(String::from(\"小女孩\")); // 小女孩 跑得很快\r\n}\r\n```\r\n\r\nCan somebody tell me how to fix this error? thanks!\n\n### Reproduction\n\nsee above error\n\n### Expected behavior\n\nI hope the code could be rendered correctly\n\n### System Info\n\n```shell\nSystem:\r\n OS: Windows 10 10.0.19044\r\n CPU: (16) x64 Intel(R) Core(TM) i7-10875H CPU @ 2.30GHz\r\n Memory: 7.65 GB / 15.79 GB\r\n Binaries:\r\n Node: 16.13.0 - D:\\nodejs\\node.EXE\r\n Yarn: 1.22.18 - D:\\npm\\node_global\\yarn.CMD\r\n npm: 8.6.0 - D:\\nodejs\\npm.CMD\r\n Browsers:\r\n Edge: Spartan (44.19041.1266.0), Chromium (106.0.1370.42)\r\n Internet Explorer: 11.0.19041.1566\r\n npmPackages:\r\n vitepress: ^1.0.0-alpha.35 => 1.0.0-alpha.35\n```\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2896],{"name":2897,"color":2898},"need more info","bdbefc",1784,"Internal server error: Element is missing end tag. Plugin: vite:vue","2023-01-29T00:04:22Z","https://github.com/vuejs/vitepress/issues/1784",0.6354372,{"description":2905,"labels":2906,"number":2908,"owner":2874,"repository":2875,"state":2888,"title":2909,"updated_at":2910,"url":2911,"score":2912},"### Describe the bug\n\nts Symbol error:\r\n\r\nPartial\u003CT>\n\n### Reproduction\n\nPartial\u003CT>\n\n### Expected behavior\n\nPartial\u003CT> is OK\n\n### System Info\n\n```sh\nSystem:\r\n OS: macOS 14.0\r\n CPU: (10) arm64 Apple M1 Max\r\n Memory: 334.34 MB / 32.00 GB\r\n Shell: 5.9 - /bin/zsh\r\n Binaries:\r\n Node: 19.5.0 - ~/.nvm/versions/node/v19.5.0/bin/node\r\n Yarn: 1.22.19 - /usr/local/bin/yarn\r\n npm: 9.4.1 - ~/.nvm/versions/node/v19.5.0/bin/npm\r\n pnpm: 8.6.12 - ~/.nvm/versions/node/v19.5.0/bin/pnpm\r\n Browsers:\r\n Chrome: 115.0.5790.170\r\n Safari: 17.0\r\n npmPackages:\r\n vitepress: 1.0.0-beta.7 => 1.0.0-beta.7\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.",[2907],{"name":2885,"color":2886},2764,"Element is missing end tag","2023-08-17T00:04:09Z","https://github.com/vuejs/vitepress/issues/2764",0.6393936,{"description":2914,"labels":2915,"number":2917,"owner":2874,"repository":2875,"state":2888,"title":2909,"updated_at":2918,"url":2919,"score":2920},"### Describe the bug\r\n\r\nerror detail: https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775\r\n\r\nI miss the error in update a markdown file, file:https://raw.githubusercontent.com/scopor/wiki/main/docs/reading/css.md\r\n\r\nRun yarn docs:build\r\n yarn docs:build\r\n shell: /usr/bin/bash -e {0}\r\nyarn run v1.[2](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:2)2.19\r\n$ vitepress build docs\r\nvitepress v1.0.0-alpha.17\r\n- building client + server bundles...\r\n[vite:vue] Element is missing end tag.\r\nfile: /home/runner/work/wiki/wiki/docs/reading/css.md:208:110\r\n✖ building client + server bundles...\r\nbuild error:\r\n Error [SyntaxError]: Element is missing end tag.\r\n at createCompilerError (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:18:19)\r\n at emitError (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:157[3](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:3):29)\r\n at parseElement (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:11[4](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:5)8:9)\r\n at parseChildren (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:932:28)\r\n at parseElement (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:112[7](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:8):22)\r\n at parseChildren (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:932:2[8](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:9))\r\n at parseElement (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:1127:22)\r\n at parseChildren (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:[9](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:10)32:28)\r\n at parseElement (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:1127:22)\r\n at parseChildren (/home/runner/work/wiki/wiki/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js:932:28) {\r\n id: '/home/runner/work/wiki/wiki/docs/reading/css.md',\r\n plugin: 'vite:vue',\r\n loc: {\r\n file: '/home/runner/work/wiki/wiki/docs/reading/css.md',\r\n line: 208,\r\n column: 1[10](https://github.com/scopor/wiki/actions/runs/3417036686/jobs/5687761775#step:6:11)\r\n },\r\n\r\n### Reproduction\r\n\r\n1、modify file\r\n2、trigger github actions: yarn docs:build\r\n\r\n### Expected behavior\r\n\r\nyarn docs:build\r\n\r\n### System Info\r\n\r\ngithub actions\r\n\r\n```shell\r\nvitepress v1.0.0-alpha.17\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.",[2916],{"name":2885,"color":2886},1590,"2023-01-21T14:20:50Z","https://github.com/vuejs/vitepress/issues/1590",0.6485548,{"description":2922,"labels":2923,"number":2925,"owner":2874,"repository":2875,"state":2888,"title":2926,"updated_at":2927,"url":2928,"score":2929},"### Describe the bug\n\n在 xx.md 文件中输入以下文档会报错:\r\n## 测试文档\r\n\r\n\r\n> \u003Cn>y = 密钥在 n 年后过期\r\n> 密钥的有效期限是?(0)\r\n\r\n\r\n11\r\n22\r\n\r\n33\n\n### Reproduction\n\n输入以上内容,编译错误\n\n### Expected behavior\n\n能够正常的编译, \n\n### System Info\n\n```shell\n17:38:38 [vite] Internal server error: Element is missing end tag.\r\n Plugin: vite:vue\r\n File: D:/pro/doc/my-docs/docs/l-note/GPG入门教程.md\r\n 6 | \r\n 7 | \r\n 8 | 11\r\n | ^\r\n 9 | 22\r\n 10 | \r\n at createCompilerError (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:19:19)\r\n at emitError (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:1602:29)\r\n at parseElement (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:1154:9)\r\n at parseChildren (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:937:28)\r\n at parseElement (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:1133:22)\r\n at parseChildren (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:937:28)\r\n at parseElement (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:1133:22)\r\n at parseChildren (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:937:28)\r\n at parseElement (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:1133:22)\r\n at parseChildren (D:\\pro\\doc\\my-docs\\node_modules\\@vue\\compiler-core\\dist\\compiler-core.cjs.js:937:28)\n```\n\n\n### Additional context\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2924],{"name":2885,"color":2886},1470,"容错率太低了, 以下文档也会进行报错。","2023-01-23T00:04:14Z","https://github.com/vuejs/vitepress/issues/1470",0.65859985,{"description":2931,"labels":2932,"number":2934,"owner":2874,"repository":2875,"state":2888,"title":2935,"updated_at":2936,"url":2937,"score":2938},"### Describe the bug\n\nHTML table (`td`) with extra newline throws `Error is missing end tag`. Row is transpiled to:\r\n\r\n```html\r\n\u003Ctr>\r\n \u003Ctd>Foo\u003C/td>\r\n \u003Ctd>Multi\r\n\u003Cp>Line\u003C/td>\u003C/p>\r\n \u003C/tr>\r\n```\r\n\r\n`\u003C/td>` and `\u003C/p>` should be reversed.\n\n### Reproduction\n\nSee example on [StackBlitz](https://stackblitz.com/edit/vite-js5myp?file=docs/broken.md).\n\n### Expected behavior\n\nIt should work as shown on the `Works` example, with single new line.\r\n\r\nBroken example:\r\n```html\r\n\u003Ctable>\r\n \u003Ctr>\r\n \u003Cth>Foo\u003C/th>\r\n \u003Cth>Bar\u003C/th>\r\n \u003C/tr>\r\n \u003Ctr>\r\n \u003Ctd>Single-line\u003C/td>\r\n \u003Ctd>Multi\r\n\r\nLine\u003C/td>\r\n\r\n \u003C/tr>\r\n \u003C/table>\r\n```\r\n\r\nWorking example:\r\n```html\r\n\u003Ctable>\r\n \u003Ctr>\r\n \u003Cth>Foo\u003C/th>\r\n \u003Cth>Bar\u003C/th>\r\n \u003C/tr>\r\n \u003Ctr>\r\n \u003Ctd>Single-line\u003C/td>\r\n \u003Ctd>Multi\r\nLine\u003C/td>\r\n\r\n \u003C/tr>\r\n \u003C/table>\r\n```\r\n\r\nMarkdown rendering:\r\n\u003Ctable>\r\n \u003Ctr>\r\n \u003Cth>Foo\u003C/th>\r\n \u003Cth>Bar\u003C/th>\r\n \u003C/tr>\r\n \u003Ctr>\r\n \u003Ctd>Single-line\u003C/td>\r\n \u003Ctd>Multi\r\n\r\nLine\u003C/td>\r\n\r\n \u003C/tr>\r\n \u003C/table>\n\n### System Info\n\n```shell\nSystem:\r\n OS: Linux 5.0 undefined\r\n CPU: (8) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz\r\n Memory: 0 Bytes / 0 Bytes\r\n Shell: 1.0 - /bin/jsh\r\n Binaries:\r\n Node: 16.14.2 - /usr/local/bin/node\r\n Yarn: 1.22.19 - /usr/local/bin/yarn\r\n npm: 7.17.0 - /usr/local/bin/npm\r\n npmPackages:\r\n vitepress: latest => 1.0.0-alpha.46\n```\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2933],{"name":2885,"color":2886},1940,"Multi-line HTML table throws `Element is missing end tag`","2023-02-22T00:04:45Z","https://github.com/vuejs/vitepress/issues/1940",0.6692063,{"description":2940,"labels":2941,"number":2943,"owner":2874,"repository":2875,"state":2888,"title":2944,"updated_at":2945,"url":2946,"score":2947},"### Describe the bug\n\nhttps://stackblitz.com/edit/vite-j7cesz?file=docs/index.md is the repro. Its `index.md` compiles just fine with some other established markdown compilers -- I tried pandoc and it worked well.\r\n\r\nI would like to know what's wrong with my markdown code! It can be that I don't understand the VitePress markdown syntax well enough, or maybe I am lucky to find a bug in the compiler 😉 I would like to provide additional info amap.\n\n### Reproduction\n\nhttps://stackblitz.com/edit/vite-j7cesz?file=docs/index.md\n\n### Expected behavior\n\nCompiles just fine.\n\n### System Info\n\n```shell\nSystem:\r\n OS: Linux 5.15 Ubuntu 22.04.1 LTS 22.04.1 LTS (Jammy Jellyfish)\r\n CPU: (20) x64 12th Gen Intel(R) Core(TM) i7-12700H\r\n Memory: 5.91 GB / 7.61 GB\r\n Container: Yes\r\n Shell: 5.1.16 - /bin/bash\r\n Binaries:\r\n Node: 19.2.0 - /usr/bin/node\r\n npm: 8.19.3 - /usr/bin/npm\r\n npmPackages:\r\n vitepress: 1.0.0-alpha.30 => 1.0.0-alpha.30\r\n```\n```\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2942],{"name":2885,"color":2886},1673,"VitePress does not compile a HTML-markdown mixed file saying that 'Element is missing end tag'","2023-01-21T14:17:06Z","https://github.com/vuejs/vitepress/issues/1673",0.6724337,{"description":2949,"labels":2950,"number":2954,"owner":2874,"repository":2875,"state":2888,"title":2955,"updated_at":2956,"url":2957,"score":2958},"### Describe the bug\n\n当没有sidebar,有footer和outline时,滚动轴在底部,outline将会显示异常\n\n### Reproduction\n\n\r\n\n\n### Expected behavior\n\n修复outline显示异常,固定在原位不动\n\n### System Info\n\n```shell\nSystem:\r\n OS: Windows 10 10.0.22000\r\n CPU: (8) x64 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz\r\n Memory: 8.82 GB / 15.69 GB\r\n Binaries:\r\n Node: 16.17.0 - D:\\developer_tools\\nodejs\\node.EXE\r\n npm: 8.19.1 - D:\\developer_tools\\nodejs\\npm.CMD\r\n Browsers:\r\n Edge: Spartan (44.22000.120.0)\r\n Internet Explorer: 11.0.22000.120\n```\n\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] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.",[2951],{"name":2952,"color":2953},"theme","0754FB",1464,"outline显示异常","2023-01-21T14:22:49Z","https://github.com/vuejs/vitepress/issues/1464",0.68627304,{"description":2960,"labels":2961,"number":2963,"owner":2874,"repository":2875,"state":2888,"title":2964,"updated_at":2965,"url":2966,"score":2967},"### Describe the bug\n\n```js\r\nexport default {\r\n paths() {\r\n return [\r\n {\r\n params: {\r\n title: \"test1\",\r\n content: `tttt\r\n yyyy\r\n qqq`,\r\n\r\n },\r\n },\r\n ]\r\n },\r\n }\r\n```\r\n\r\n```md\r\n# {{ $params.title }}\r\n\r\n11111 content ↓↓↓\r\n\r\n\u003C!-- @content -->\r\n\r\n\r\n2222 content ↑↑↑\r\n\r\n```\n\n### Reproduction\n\nhttps://stackblitz.com/~/edit/vite-sqe6dh?file=docs%2Findex.md\n\n### Expected behavior\n\nContent displayed normally\n\n### System Info\n\n```Text\nSystem:\r\n OS: Windows 11 10.0.22621\r\n CPU: (12) x64 12th Gen Intel(R) Core(TM) i5-1235U\r\n Memory: 7.25 GB / 15.64 GB\r\n Binaries:\r\n Node: 21.6.1 - C:\\Program Files\\nodejs\\node.EXE\r\n npm: 10.2.4 - C:\\Program Files\\nodejs\\npm.CMD\r\n pnpm: 8.15.1 - C:\\Program Files\\nodejs\\pnpm.CMD\r\n Browsers:\r\n Edge: Chromium (121.0.2277.98)\r\n Internet Explorer: 11.0.22621.1\r\n npmPackages:\r\n vitepress: 1.0.0-rc.41 => 1.0.0-rc.41\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.",[2962],{"name":2885,"color":2886},3543,"\"\u003C! -- @ content -->\" is not available in the Rendering Raw Content","2024-02-13T00:04:48Z","https://github.com/vuejs/vitepress/issues/3543",0.68832344,["Reactive",2969],{},["Set"],["ShallowReactive",2972],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fHKqM9D-YEwY4xJf-m8m68v321TRyIeWN06rZjT_WSao":-1},"/vuejs/vitepress/576"]