is used","2025-04-10T06:07:28Z","https://github.com/nuxt/icon/issues/356",0.46005535,{"description":2009,"labels":2010,"number":2001,"owner":1991,"repository":2014,"state":2003,"title":2015,"updated_at":2016,"url":2017,"score":2007},"### 🐛 The bug\n\nIn the reproduction project added two pages. In page1 adsense script is used. Accessing this page triggers \"error loading dynamically imported module: https://nuxtstarterpkwfkx-l1p5--3000--1b4252dd.local-corp.webcontainer.io/_nuxt/pages/page1.vue\" after some time.\n\n### 🛠️ To reproduce\n\nhttps://stackblitz.com/edit/nuxt-starter-kzs9wacl?file=pages%2Fpage1.vue\n\n### 🌈 Expected behavior\n\nadsense iframe to load\n\n### ℹ️ Additional context\n\n_No response_",[2011],{"name":2012,"color":2013},"bug","d73a4a","scripts","error loading dynamically imported module, when using adsense script","2025-02-12T08:39:18Z","https://github.com/nuxt/scripts/issues/356",{"description":2019,"labels":2020,"number":2023,"owner":1991,"repository":2024,"state":2003,"title":2025,"updated_at":2026,"url":2027,"score":2028},"",[2021],{"name":1985,"color":2022},"1ad6ff",277,"nuxt.com","Command palettes modals should always have first element selected","2023-02-15T12:32:03Z","https://github.com/nuxt/nuxt.com/issues/277",0.70248216,{"description":2030,"labels":2031,"number":2023,"owner":1991,"repository":2032,"state":2003,"title":2033,"updated_at":2034,"url":2035,"score":2028},"https://github.com/nuxt-community/laravel-echo-module/blob/main/test/basic.test.ts#L12",[],"test-utils","renderAndGetWindow type not found","2023-12-02T00:13:07Z","https://github.com/nuxt/test-utils/issues/277",{"description":2037,"labels":2038,"number":2041,"owner":1991,"repository":2024,"state":2003,"title":2042,"updated_at":2043,"url":2044,"score":2045},"Those files should also have the same design as in the tree:\n\n\n",[2039],{"name":2012,"color":2040},"ff281a",218,"Prevent select of deleted files in command palette","2022-03-29T10:23:59Z","https://github.com/nuxt/nuxt.com/issues/218",0.75201803,{"description":2047,"labels":2048,"number":2041,"owner":1991,"repository":2014,"state":2003,"title":2050,"updated_at":2051,"url":2052,"score":2045},"### 🆒 Your use case\r\n\r\nFor scripts using the default trigger (onNuxtReady) we should probably do a prefetch or preload so that the script is downloaded and executated as quickly as possible.\r\n\r\n### 🆕 The solution you'd like\r\n\r\n-\r\n\r\n### 🔍 Alternatives you've considered\r\n\r\n_No response_\r\n\r\n### ℹ️ Additional info\r\n\r\n_No response_",[2049],{"name":1985,"color":1986},"DNS prefetch / preload default triggered scripts","2024-09-27T08:15:47Z","https://github.com/nuxt/scripts/issues/218",{"description":2019,"labels":2054,"number":2056,"owner":1991,"repository":2024,"state":2003,"title":2057,"updated_at":2058,"url":2059,"score":2060},[2055],{"name":1985,"color":2022},408,"Scroll to file in tree on select from command palette","2023-02-15T12:32:16Z","https://github.com/nuxt/nuxt.com/issues/408",0.75438887,{"description":2062,"labels":2063,"number":2056,"owner":1991,"repository":2032,"state":2003,"title":2064,"updated_at":2065,"url":2066,"score":2060},"It would be helpful to test if a given plugin is *not* added, for example.\r\n\r\nThis is needed rather than using the jest `.not` helper because this code fails, if a *different* plugin is injected:\r\n```js\r\n test('should not inject optional plugin', () => {\r\n expect(ctx).not.toNuxtPluginAdded({\r\n src: expect.stringContaining('templates/optional-plugin.js'),\r\n })\r\n })\r\n```",[],"feat: add corresponding negative jest matchers","2023-12-02T00:13:09Z","https://github.com/nuxt/test-utils/issues/408",{"description":2068,"labels":2069,"number":2076,"owner":1991,"repository":1991,"state":2003,"title":2077,"updated_at":2078,"url":2079,"score":2080},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v18.18.2`\r\n- Nuxt Version: `3.6.1`\r\n- Nitro Version: `2.5.2`\r\n- Package Manager: `npm@9.8.1`\r\n- Builder: `vite`\r\n- User Config: `ssr`, `nitro`, `app`, `modules`, `security`, `vite`\r\n- Runtime Modules: `nuxt-security@1.0.0-rc.2`, `nuxt-vitest@0.10.2`\r\n- Build Modules: `-`\r\n\r\n\r\nAlthough we are pinned at Nuxt v3.6.1 'for reasons' the bug can be observed in StackBlitz repro on Nuxt v3.8.2\r\n\r\n### Reproduction\r\n\r\nhttps://stackblitz.com/edit/github-6rrfcj?file=pages%2Findex.vue\r\n\r\nNote: Issue relates to keyboard navigation! - not mouse.\r\n\r\n- Open `index` page and tab bring focus to button labelled `Goto Two`. \r\n- Hit enter key to effectively `click` button. (remember, keyboard - not mouse!)\r\n- Browser navigates to page `two`\r\n\r\nNotice the header suggests that the function `handleNext` has been called. This suggest that the `@keyup` event has fired on the `input` control on page `two` as `handleNext` is the function handling of that event. I can't think why this should be expected behaviour. Almost as if the `keyup` event from pressing the button on the `index` page is being seen by page `two` when the `focus()` call is made?! \r\n\r\nOpen the browser devtools to see console.log messages also indicating that `handleNext` has been called.\r\n\r\nAlso, to add additional context/relevant to help diagnose the error. In the script for `two.vue` there is another option (2) that can be uncommented and option (1) commented out. This only calls `focus()` after a delay. With this in place the potential bug doesn't happen.\r\n\r\n### Describe the bug\r\n\r\nI'm seeing what I think maybe a bug when navigating to a page that combines and `input` control with an associated `@keyup` handler that is also focused on page load via `onMounted` lifecycle event.\r\n\r\nFollow the reproduction above and also the effect of delaying the call to `focus()` on the `input` control.\r\n\r\n\r\n### Additional context\r\n\r\nChanging the event type on the `input` field from `@keyup` to `@keydown` also avoids the issue.\r\n\r\n### Logs\r\n\r\n_No response_",[2070,2073],{"name":2071,"color":2072},"3.x","29bc7f",{"name":2074,"color":2075},"pending triage","E99695",24434,"Unexpected @keyup triggering on focused input field when navigated to via keyboard \"click\"","2023-11-28T14:35:12Z","https://github.com/nuxt/nuxt/issues/24434",0.7677816,["Reactive",2082],{},["Set"],["ShallowReactive",2085],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"5EWLuknqJjPdRhRjll8blEx3691UHOseqvee0cKS_DU":-1},"/nuxt/nuxt.com/356"]