\r\n \u003Cdiv class=\"rfloat\">\r\n \u003Cdiv class=\"gotop\" :class=\"staticD.fade\" @click=\"gotop()\">\r\n \u003Cimg :src=\"dynamicD.gotopimg\">\r\n \u003C/div>\r\n \u003C/div>\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n```\r\n\u003Cscript>\r\n import axios from 'axios'\r\n export default {\r\n data () {\r\n return {\r\n staticD: { // 静态数据\r\n wait: false,\r\n fade: ''\r\n },\r\n dynamicD: { // 动态请求数据\r\n // 'curpath': '/',\r\n // 'gotopimg': '/img/i-top.png',\r\n // 'logosrc': '/img/logo.png',\r\n // 'nav': [\r\n // { 'curpath': '/', 'txt': '首页' },\r\n // { 'curpath': '/cases', 'txt': '案例' },\r\n // { 'curpath': '/designers', 'txt': '设计师' },\r\n // { 'curpath': '/properties', 'txt': '热装楼盘' },\r\n // { 'curpath': '/constructions', 'txt': '在施工地' },\r\n // { 'curpath': '/embodiments', 'txt': '别墅实施' },\r\n // { 'curpath': '/furnishings', 'txt': '别墅软装' },\r\n // { 'curpath': '/villas', 'txt': '出版刊物' },\r\n // { 'curpath': '/about', 'txt': '关于' }\r\n // ],\r\n // 'rootdir': '/',\r\n // 'tel': '400-001-5820',\r\n // 'telimg': '/img/tel.png'\r\n }\r\n }\r\n },\r\n created () {\r\n this.fetchData()\r\n },\r\n beforeMount () {\r\n this.init(window, document)\r\n this.pathfn() // 渲染dom前调用导航定位\r\n },\r\n mounted () {\r\n // this.fetchData()\r\n // console.log(this.$route)\r\n this.$nextTick(function () {\r\n this.staticD.wait = true\r\n })\r\n this.handleScroll()\r\n window.addEventListener('scroll', this.handleScroll)\r\n },\r\n beforeUpdate () {\r\n // console.log(this.$route)\r\n this.pathfn() // 路由切换调用导航定位\r\n },\r\n destroyed () {\r\n window.removeEventListener('scroll', this.handleScroll)\r\n },\r\n watch: {\r\n },\r\n methods: {\r\n fetchData: function () {\r\n let that = this\r\n axios.post('http://rap.taobao.org/mockjsdata/30077/api/default')\r\n .then(function (res) {\r\n console.log(res.data)\r\n that.dynamicD = Object.create(res.data)\r\n })\r\n .catch(function (err) {\r\n console.log(err)\r\n })\r\n },\r\n init: function (win, doc) { // 自适应\r\n function setFontSize () {\r\n // 获取window 宽度\r\n // zepto实现 $(window).width()就是这么干的\r\n var winWidth = (window.innerWidth / 1920) * 100\r\n winWidth = winWidth > 100 ? 100 : winWidth\r\n doc.documentElement.style.fontSize = winWidth + 'px'\r\n }\r\n var evt = 'onorientationchange' in win ? 'orientationchange' : 'resize'\r\n var timer = null\r\n\r\n win.addEventListener(evt, function () {\r\n clearTimeout(timer)\r\n timer = setTimeout(setFontSize, 300)\r\n }, false)\r\n\r\n win.addEventListener('pageshow', function (e) {\r\n if (e.persisted) {\r\n clearTimeout(timer)\r\n timer = setTimeout(setFontSize, 300)\r\n }\r\n }, false)\r\n // 初始化\r\n setFontSize()\r\n },\r\n pathfn: function () { // 导航定位\r\n let reg = this.$route.path.lastIndexOf('/') === 0 ? /^(\\/\\w*$)/g : /^(\\/\\w+\\/)/g\r\n let aPath = this.$route.path.match(reg)[0]\r\n this.dynamicD.curpath = aPath === '/' ? '/' : aPath.replace(/\\/$/g, '')\r\n // console.log(reg, this.$route)\r\n // console.log(this.curpath)\r\n },\r\n gotop: function () { // 点击回到顶部\r\n let timer = null\r\n let oTop\r\n let eleSec = document.documentElement\r\n cancelAnimationFrame(timer)\r\n timer = requestAnimationFrame(function fn () {\r\n oTop = eleSec.scrollTop\r\n // console.log(oTop)\r\n let speed = Math.ceil(oTop / 9)\r\n if (oTop > 0) {\r\n eleSec.scrollTop = oTop - speed\r\n timer = requestAnimationFrame(fn)\r\n // console.log(1)\r\n eleSec.ontouchstart = function () {\r\n // console.log(1)\r\n cancelAnimationFrame(timer)\r\n }\r\n } else {\r\n cancelAnimationFrame(timer)\r\n }\r\n })\r\n },\r\n handleScroll: function () { // 滚动到底部显示回到顶部按钮\r\n let oTop\r\n let dVal\r\n let scroH = document.documentElement.scrollHeight\r\n oTop = document.documentElement.scrollTop\r\n dVal = scroH - oTop - document.documentElement.clientHeight\r\n if (dVal > 500) {\r\n this.staticD.fade = 'fadeout'\r\n } else {\r\n this.staticD.fade = 'fadein'\r\n }\r\n }\r\n }\r\n }\r\n\u003C/script>\r\n```\r\n```\r\n\u003Cstyle>\r\n/**\r\n * header\r\n */\r\n.header{\r\n height: 1rem;\r\n position: fixed;\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n z-index: 10;\r\n background: rgba(243, 241, 239, 0.8);\r\n}\r\n.header .logo{\r\n height: 100%;\r\n display: inline-block;\r\n padding: .2rem 0;\r\n margin-left: 1.3rem;\r\n}\r\n.header .logo img{\r\n height: 100%;\r\n width: auto;\r\n}\r\n\r\n.header ul,\r\n.header li,\r\n.header .tel{\r\n display: inline-block;\r\n}\r\n.header ul{\r\n margin-left: 2rem;\r\n}\r\n.header li{\r\n width: 1rem;\r\n text-align: center;\r\n}\r\n.header .tel{\r\n margin-left: 2rem;\r\n padding-left: .25rem;\r\n font-weight: bold;\r\n font-size: 1.2em;\r\n background: url(~static/img/tel.png) left center no-repeat;\r\n background-size: auto 100%;\r\n}\r\nsection{\r\n padding-top: 1rem;\r\n}\r\n.container {\r\n min-height: 100vh;\r\n display: flex;\r\n justify-content: center;\r\n align-items: center;\r\n text-align: center;\r\n}\r\n\r\n.title {\r\n font-family: \"Quicksand\", \"Source Sans Pro\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif; /* 1 */\r\n display: block;\r\n font-weight: 300;\r\n font-size: 100px;\r\n color: #35495e;\r\n letter-spacing: 1px;\r\n}\r\n.links {\r\n padding-top: 15px;\r\n}\r\n\r\n/**\r\n * 返回顶部\r\n */\r\n.rfloat {\r\n position: fixed;\r\n right: .2rem;\r\n bottom: 2rem;\r\n width: .5rem;\r\n z-index: 1000;\r\n}\r\n\r\n.rfloat .gotop {\r\n background: rgba(89, 87, 87, .8);\r\n padding: 25%;\r\n /*display: none;*/\r\n /*transform: scale(0, 0);*/\r\n border-radius: .1rem;\r\n box-shadow: 1px 1px 1px .01rem #595757;\r\n transition: all;\r\n}\r\n.rfloat .gotop:hover{\r\n background: rgba(215,0,15,.8);\r\n box-shadow: 1px 1px 1px .01rem #d33c46cc;\r\n}\r\n.rfloat .gotop.fadeout{\r\n animation: fadeout .8s;\r\n display: none;\r\n}\r\n.rfloat .gotop.fadein{\r\n display: block;\r\n animation: fadein .8s;\r\n}\r\n@keyframes fadeout {\r\n from{opacity: 1;}\r\n to{opacity: 0;}\r\n}\r\n@keyframes fadein {\r\n from{opacity: 0;}\r\n to{opacity: 1;}\r\n}\r\n\u003C/style>\r\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2068\">#c2068\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2899],{"name":2874,"color":2875},2376,"TypeError Cannot read property 'name' of undefined??????","2023-01-18T15:55:11Z","https://github.com/nuxt/nuxt/issues/2376",0.75344217,{"description":2906,"labels":2907,"number":2912,"owner":2863,"repository":2863,"state":2877,"title":2892,"updated_at":2913,"url":2914,"score":2915},"Button Component\r\n\r\n\r\nUsage of Button\r\n\r\n\r\n\r\n### Versions\r\n- nuxt: 3 latest beta\r\n- node: 14.17.1\r\n\r\n### What is Expected?\r\nIntellisense should detect component prop in template\r\n\r\nProbably related to issue https://github.com/johnsoncodehk/volar/issues/460\r\n",[2908,2911],{"name":2909,"color":2910},"pending triage","E99695",{"name":2874,"color":2875},9920,"2023-01-22T15:45:05Z","https://github.com/nuxt/nuxt/issues/9920",0.7546936,{"description":2917,"labels":2918,"number":2920,"owner":2863,"repository":2863,"state":2877,"title":2921,"updated_at":2922,"url":2923,"score":2924},"Module build failed: ValidationError: PostCSS Loader Invalid Options\r\n\r\noptions['useConfigFile'] is an invalid additional property\r\n\r\n\r\n\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2645\">#c2645\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2919],{"name":2874,"color":2875},3054,"Module build failed: ValidationError: PostCSS Loader Invalid Options options['useConfigFile'] is an invalid additional property","2023-01-18T16:09:56Z","https://github.com/nuxt/nuxt/issues/3054",0.75576264,{"description":2926,"labels":2927,"number":2932,"owner":2863,"repository":2863,"state":2877,"title":2933,"updated_at":2934,"url":2935,"score":2936},"I'm getting a similar error:\r\n\r\n `Property X does not exist on type 'CreateComponentPublicInstance\u003CReadonly\u003CExtractPropTypes\u003C{}>>, { Menu: typeof Menu; MenuButton: typeof MenuButton; MenuItem: typeof MenuItem; MenuItems: typeof MenuItems; Popover: typeof Popover; ... 10 more ...; handleLinkClick: typeof handleLinkClick; }, ... 17 more ..., {}>'.ts-plugin(2339)`\r\n\r\nWhere `X` is any function or variable in the utils folder. The app works fine on live and dev mode so nuxt is auto-importing correctly, but I think vscode's \"Vue - Official\" extension isn't understanding that this is auto-imported.\r\n\r\nThis only happens in the `\u003Ctemplate>` section, it doesn't error inside `\u003Cscript>`.\r\n\r\nThe error wasn't here when I had Nuxt 3.11.2, but I recently upgraded to 3.12.4 and it showed up. Is this happening for anyone else?\r\n\r\n_Originally posted by @jeffreytung7 in https://github.com/nuxt/nuxt/issues/28373#issuecomment-2272179792_",[2928,2929],{"name":2909,"color":2910},{"name":2930,"color":2931},"needs reproduction","FBCA04",28707,"Property X does not exist on type 'CreateComponentPublicInstance\u003CReadonly\u003CExtractPropTypes\u003C{}>>","2025-02-19T14:13:18Z","https://github.com/nuxt/nuxt/issues/28707",0.7596629,{"description":2938,"labels":2939,"number":2942,"owner":2863,"repository":2863,"state":2877,"title":2943,"updated_at":2944,"url":2945,"score":2946},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v20.13.1`\r\n- Nuxt Version: `3.11.2`\r\n- CLI Version: `3.11.1`\r\n- Nitro Version: `2.9.6`\r\n- Package Manager: `npm@10.5.2`\r\n- Builder: `-`\r\n- User Config: `components`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\n- Run [this repo](https://github.com/Jesus82/test-asyncdata) with `npm run dev`\r\n- Go to index and try to follow any of the links.\r\n\r\nVideo:\r\nhttps://github.com/nuxt/nuxt/assets/8875832/c8d2cb13-08da-4e85-865f-302e97879801\r\n\r\n\r\n\r\n### Describe the bug\r\n\r\n- The object passed down as a prop doesn't seem to be passed.\r\n`[Vue warn]: Invalid prop: type check failed for prop \"beerStyle\". Expected Object, got Null`\r\n\r\n### Additional context\r\n\r\nThis happens in any nested route and nested components when calling the `$fetch` method from a either from a composable or directly from the page. I also checked [this answer](https://github.com/nuxt/nuxt/issues/21772), but here there is no context error in this case.\r\n\r\n### Logs\r\n\r\n```shell-script\r\n[Vue warn]: Invalid prop: type check failed for prop \"beerStyle\". Expected Object, got Null \r\n at \u003CBeerCard beer-style=null > \r\n at \u003C[slug] onVnodeUnmounted=fn\u003ConVnodeUnmounted> ref=Ref\u003C Proxy(Object) {__v_skip: true} > > \r\n at \u003CAnonymous key=\"/test/ale()\" vnode= {__v_isVNode: true, __v_skip: true, type: {…}, props: {…}, key: null, …} route= {fullPath: '/test/ale', path: '/test/ale', query: {…}, hash: '', name: 'test-slug', …} ... > \r\n at \u003CRouterView name=undefined route=undefined > \r\n at \u003CNuxtPage> \r\n at \u003CApp key=3 > \r\n at \u003CNuxtRoot>\r\n\r\n[Vue warn]: Invalid prop: type check failed for prop \"beerStyle\". Expected Object, got Null \r\n at \u003CBeerDetails beer-style=null > \r\n at \u003CBeerCard beer-style=null > \r\n at \u003C[slug] onVnodeUnmounted=fn\u003ConVnodeUnmounted> ref=Ref\u003C Proxy(Object) {__v_skip: true} > > \r\n at \u003CAnonymous key=\"/test/ale()\" vnode= {__v_isVNode: true, __v_skip: true, type: {…}, props: {…}, key: null, …} route= {fullPath: '/test/ale', path: '/test/ale', query: {…}, hash: '', name: 'test-slug', …} ... > \r\n at \u003CRouterView name=undefined route=undefined > \r\n at \u003CNuxtPage> \r\n at \u003CApp key=3 > \r\n at \u003CNuxtRoot>\r\n\r\n[Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://github.com/vuejs/core . \r\n at \u003CBeerDetails beer-style=null > \r\n at \u003CBeerCard beer-style=null > \r\n at \u003C[slug] onVnodeUnmounted=fn\u003ConVnodeUnmounted> ref=Ref\u003C Proxy(Object) {__v_skip: true} > > \r\n at \u003CAnonymous key=\"/test/ale()\" vnode= {__v_isVNode: true, __v_skip: true, type: {…}, props: {…}, key: null, …} route= {fullPath: '/test/ale', path: '/test/ale', query: {…}, hash: '', name: 'test-slug', …} ... > \r\n at \u003CRouterView name=undefined route=undefined > \r\n at \u003CNuxtPage> \r\n at \u003CApp key=3 > \r\n at \u003CNuxtRoot>\r\n\r\n[Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://github.com/vuejs/core . \r\n at \u003CBeerDetails beer-style=null > \r\n at \u003CBeerCard beer-style=null > \r\n at \u003C[slug] onVnodeUnmounted=fn\u003ConVnodeUnmounted> ref=Ref\u003C Proxy(Object) {__v_skip: true} > > \r\n at \u003CAnonymous key=\"/test/ale()\" vnode= {__v_isVNode: true, __v_skip: true, type: {…}, props: {…}, key: null, …} route= {fullPath: '/test/ale', path: '/test/ale', query: {…}, hash: '', name: 'test-slug', …} ... > \r\n at \u003CRouterView name=undefined route=undefined > \r\n at \u003CNuxtPage> \r\n at \u003CApp key=3 > \r\n at \u003CNuxtRoot>\r\nwarn$1 @ chunk-6LRXACK2.js?v=b7822ff8:1512\r\nlogError @ chunk-6LRXACK2.js?v=b7822ff8:1724\r\nhandleError @ chunk-6LRXACK2.js?v=b7822ff8:1716\r\ncallWithErrorHandling @ chunk-6LRXACK2.js?v=b7822ff8:1661\r\nflushJobs @ chunk-6LRXACK2.js?v=b7822ff8:1873\r\nPromise.then (async)\r\nqueueFlush @ chunk-6LRXACK2.js?v=b7822ff8:1782\r\nqueuePostFlushCb @ chunk-6LRXACK2.js?v=b7822ff8:1802\r\nqueueEffectWithSuspense @ chunk-6LRXACK2.js?v=b7822ff8:3222\r\nscheduler @ chunk-6LRXACK2.js?v=b7822ff8:3431\r\nresetScheduling @ chunk-6LRXACK2.js?v=b7822ff8:517\r\ntriggerEffects @ chunk-6LRXACK2.js?v=b7822ff8:561\r\ntriggerRefValue @ chunk-6LRXACK2.js?v=b7822ff8:1316\r\nset value @ chunk-6LRXACK2.js?v=b7822ff8:1361\r\nfinalizeNavigation @ vue-router.js?v=b7822ff8:2604\r\n(anonymous) @ vue-router.js?v=b7822ff8:2514\r\nPromise.then (async)\r\npushWithRedirect @ vue-router.js?v=b7822ff8:2482\r\npush @ vue-router.js?v=b7822ff8:2408\r\nnavigate @ vue-router.js?v=b7822ff8:1644\r\ncallWithErrorHandling @ chunk-6LRXACK2.js?v=b7822ff8:1659\r\ncallWithAsyncErrorHandling @ chunk-6LRXACK2.js?v=b7822ff8:1666\r\ninvoker @ chunk-6LRXACK2.js?v=b7822ff8:10297\r\nShow 21 more frames\r\nShow less\r\nBeerDetails.vue:3 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'name')\r\n at Proxy._sfc_render (BeerDetails.vue:3:80)\r\n at renderComponentRoot (chunk-6LRXACK2.js?v=b7822ff8:2350:17)\r\n at ReactiveEffect.componentUpdateFn [as fn] (chunk-6LRXACK2.js?v=b7822ff8:7466:46)\r\n at ReactiveEffect.run (chunk-6LRXACK2.js?v=b7822ff8:435:19)\r\n at instance.update (chunk-6LRXACK2.js?v=b7822ff8:7597:17)\r\n at setupRenderEffect (chunk-6LRXACK2.js?v=b7822ff8:7607:5)\r\n at mountComponent (chunk-6LRXACK2.js?v=b7822ff8:7375:7)\r\n at processComponent (chunk-6LRXACK2.js?v=b7822ff8:7329:9)\r\n at patch (chunk-6LRXACK2.js?v=b7822ff8:6795:11)\r\n at ReactiveEffect.componentUpdateFn [as fn] (chunk-6LRXACK2.js?v=b7822ff8:7473:11)\r\n\r\nBeerDetails.vue:3 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'name')\r\n at Proxy._sfc_render (BeerDetails.vue:3:80)\r\n at renderComponentRoot (chunk-6LRXACK2.js?v=b7822ff8:2350:17)\r\n at ReactiveEffect.componentUpdateFn [as fn] (chunk-6LRXACK2.js?v=b7822ff8:7466:46)\r\n at ReactiveEffect.run (chunk-6LRXACK2.js?v=b7822ff8:435:19)\r\n at instance.update (chunk-6LRXACK2.js?v=b7822ff8:7597:17)\r\n at setupRenderEffect (chunk-6LRXACK2.js?v=b7822ff8:7607:5)\r\n at mountComponent (chunk-6LRXACK2.js?v=b7822ff8:7375:7)\r\n at processComponent (chunk-6LRXACK2.js?v=b7822ff8:7329:9)\r\n at patch (chunk-6LRXACK2.js?v=b7822ff8:6795:11)\r\n at ReactiveEffect.componentUpdateFn [as fn] (chunk-6LRXACK2.js?v=b7822ff8:7473:11)\r\n_sfc_render\t@\tBeerDetails.vue:3\r\nrenderComponentRoot\t@\tchunk-6LRXACK2.js?v=b7822ff8:2350\r\ncomponentUpdateFn\t@\tchunk-6LRXACK2.js?v=b7822ff8:7466\r\nrun\t@\tchunk-6LRXACK2.js?v=b7822ff8:435\r\ninstance.update\t@\tchunk-6LRXACK2.js?v=b7822ff8:7597\r\nsetupRenderEffect\t@\tchunk-6LRXACK2.js?v=b7822ff8:7607\r\nmountComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7375\r\nprocessComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7329\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6795\r\ncomponentUpdateFn\t@\tchunk-6LRXACK2.js?v=b7822ff8:7473\r\nrun\t@\tchunk-6LRXACK2.js?v=b7822ff8:435\r\ninstance.update\t@\tchunk-6LRXACK2.js?v=b7822ff8:7597\r\nsetupRenderEffect\t@\tchunk-6LRXACK2.js?v=b7822ff8:7607\r\nmountComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7375\r\nprocessComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7329\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6795\r\nmountChildren\t@\tchunk-6LRXACK2.js?v=b7822ff8:7043\r\nmountElement\t@\tchunk-6LRXACK2.js?v=b7822ff8:6950\r\nprocessElement\t@\tchunk-6LRXACK2.js?v=b7822ff8:6915\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6783\r\ncomponentUpdateFn\t@\tchunk-6LRXACK2.js?v=b7822ff8:7473\r\nrun\t@\tchunk-6LRXACK2.js?v=b7822ff8:435\r\ninstance.update\t@\tchunk-6LRXACK2.js?v=b7822ff8:7597\r\nsetupRenderEffect\t@\tchunk-6LRXACK2.js?v=b7822ff8:7607\r\nmountComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7375\r\nprocessComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7329\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6795\r\ncomponentUpdateFn\t@\tchunk-6LRXACK2.js?v=b7822ff8:7473\r\nrun\t@\tchunk-6LRXACK2.js?v=b7822ff8:435\r\ninstance.update\t@\tchunk-6LRXACK2.js?v=b7822ff8:7597\r\nsetupRenderEffect\t@\tchunk-6LRXACK2.js?v=b7822ff8:7607\r\nmountComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7375\r\nprocessComponent\t@\tchunk-6LRXACK2.js?v=b7822ff8:7329\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6795\r\npatchSuspense\t@\tchunk-6LRXACK2.js?v=b7822ff8:2882\r\nprocess\t@\tchunk-6LRXACK2.js?v=b7822ff8:2679\r\npatch\t@\tchunk-6LRXACK2.js?v=b7822ff8:6820\r\ncomponentUpdateFn\t@\tchunk-6LRXACK2.js?v=b7822ff8:7553\r\nrun\t@\tchunk-6LRXACK2.js?v=b7822ff8:435\r\ninstance.update\t@\tchunk-6LRXACK2.js?v=b7822ff8:7597\r\ncallWithErrorHandling\t@\tchunk-6LRXACK2.js?v=b7822ff8:1659\r\nflushJobs\t@\tchunk-6LRXACK2.js?v=b7822ff8:1873\r\n```\r\n",[2940,2941],{"name":2886,"color":2887},{"name":2909,"color":2910},27188,"Prop not passed down on nested components in dynamic routes","2024-05-14T07:38:13Z","https://github.com/nuxt/nuxt/issues/27188",0.76027983,{"description":2883,"labels":2948,"number":2949,"owner":2863,"repository":2863,"state":2877,"title":2892,"updated_at":2950,"url":2951,"score":2952},[],12100,"2023-01-19T15:54:18Z","https://github.com/nuxt/nuxt/issues/12100",0.76156205,{"description":2883,"labels":2954,"number":2955,"owner":2863,"repository":2863,"state":2877,"title":2892,"updated_at":2956,"url":2957,"score":2952},[],12128,"2023-01-19T15:59:14Z","https://github.com/nuxt/nuxt/issues/12128",["Reactive",2959],{},["Set"],["ShallowReactive",2962],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fX2iKnsx1vxrvVZ9R11nFiMlYzeFiiI4gtreg74TbgoA":-1},"/nuxt/ui/3241"]