` component that shows the loading bar at the top but I think if we combine that with this native loading indicator feature we can really make great UX.\r\n\r\nYes, this is bleeding edge feature not currently supported everywhere but I think it would be nice to still give users the option to use this new feature _**IF their browser supports it.**_\r\n\r\nDocs: \r\nhttps://developer.chrome.com/docs/web-platform/navigation-api/\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/Navigation_API\r\n\r\nDemo:\r\nhttps://gigantic-honored-octagon.glitch.me/\r\n\r\n_(In the demo, you can activate the `Add an artificial two-second delay to all navigations (should impact the loading spinner/scroll restoration/focus reset/accessibility announcements).` checkbox to see the native loader appearing on the tab when navigating)_\r\n\r\n\r\n\r\n\r\n### Additional information\r\n\r\n- [ ] Would you be willing to help implement this feature?\r\n- [ ] Could this feature be implemented as a module?\r\n\r\n### Final checks\r\n\r\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\r\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2941,2942,2945,2948],{"name":2866,"color":2911},{"name":2943,"color":2944},"good first issue","fbca04",{"name":2946,"color":2947},"upstream","E8A36D",{"name":2919,"color":2920},24553,"[Feature Request] Use the new browser Navigation API to show a native loading indicator when navigating","2025-02-22T19:58:43Z","https://github.com/nuxt/nuxt/issues/24553",0.8026984,{"description":2955,"labels":2956,"number":2958,"owner":2869,"repository":2902,"state":2959,"title":2960,"updated_at":2961,"url":2962,"score":2963},"### Environment\n\n\"nuxt\": \"^3.13.0\"\r\n\"@nuxt/ui\": \"^2.18.4\"\r\n\"vue\": \"latest\"\r\n\r\nnode js 20.9.0\r\n\r\nChip Apple M1 Pro\r\nMacOS Sonoma 14.2.1\n\n### Version\n\nv2.18.4\n\n### Reproduction\n\n\r\n1. Run this Page\r\n```typescript\r\n\u003Ctemplate>\r\n \u003CUTable v-model=\"selected\" :rows=\"rows\" />\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\n definePageMeta({\r\n layout: '',\r\n })\r\n const rows = [{\r\n id: 1,\r\n name: 'John Doe',\r\n amount: 12.54,\r\n }, {\r\n id: 2,\r\n name: 'Jane Roe',\r\n amount: 45.12,\r\n }]\r\n const selected = ref([]);\r\n watch(selected, async (selections) => {\r\n const idMap = selections.map((item) => item.id);\r\n console.info('You checked', idMap)\r\n });\r\n\u003C/script>\r\n```\r\n\r\n2. Notice that when you check the check all box on the table that watch does not get called and nothing is printed to console\r\n\r\n\r\n\r\n\r\n\n\n### Description\n\nWhen you uncheck check all (false) watch updates correctly\r\nWhen you individually check boxes logic also works correctly\r\nIt is only when check all is checked (true) that the event does not propagate to watch correctly\r\n\r\nI also tried the @select function on the table as per example (https://ui.nuxt.com/components/table) and this function is even worse, it only executes some times\r\n\r\nI can see values being pushed here `/node_modules/@nuxt/ui/dist/runtime/components/data/Table.vue > selectAllRows()` but it does not propogate back to my app, maybe the push function does not work correctly on the array value?\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2957],{"name":2930,"color":2931},2170,"closed","UTable 'Select all' not updating ref events correctly","2024-09-18T08:42:41Z","https://github.com/nuxt/ui/issues/2170",0.7469543,{"description":2965,"labels":2966,"number":2971,"owner":2869,"repository":2869,"state":2959,"title":2972,"updated_at":2973,"url":2974,"score":2975},"### Environment\r\n\r\n- nuxt : `2.15.8`\r\n- nuxt-gsap-module: ` 1.7.2`,\r\n\r\n\r\n### Reproduction\r\n\r\nReproduction on the link below :\r\nhttps://codesandbox.io/s/animation-between-page-test-go4k6h?file=/layouts/default.vue\r\n\r\n### Describe the bug\r\n\r\nI used GSAP for transitions between my pages.\r\n\r\nThe problem is when you leave about, home is not loaded and we see body background. Conversely, when you are on home and you go on about, home is still alive and \"about\" move above home\r\nAnother thing is between about and news, the two pages \"push\" each other.\r\n\r\nIs it possible to \"keep alive\" home page in both cases ? and to prevent \"pushing\" ?\r\n\r\n\r\n### Additional context\r\n\r\n\r\nI tried to reproduce animations in this website : [https://www.mirrormirror.fr/](https://www.mirrormirror.fr/)",[2967,2970],{"name":2968,"color":2969},"3.x","29bc7f",{"name":2880,"color":2881},12397,"Transition between pages issue","2023-02-21T17:01:00Z","https://github.com/nuxt/nuxt/issues/12397",0.77339333,{"description":2977,"labels":2978,"number":2983,"owner":2869,"repository":2869,"state":2959,"title":2972,"updated_at":2984,"url":2985,"score":2986},"Hello everyone,\r\n\r\n### Environment\r\n\r\nnuxt : `2.15.8`\r\nnuxt-gsap-module: `1.7.2`\r\n\r\n### Reproduction\r\n\r\nReproduction on the link below :\r\nhttps://codesandbox.io/s/animation-between-page-test-go4k6h?file=/layouts/default.vue\r\n\r\n### Describe the bug\r\n\r\nI used GSAP for transitions between my pages.\r\n\r\n**The problem is when you leave about, home is not loaded and we see body background. Conversely, when you are on home and you go on about, home is still alive and \"about\" move above home\r\nAnother thing is between about and news, the two pages \"push\" each other.**\r\n\r\nIs it possible to \"keep alive\" home page in both cases ? and to prevent \"pushing\" ?\r\n\r\n### Additional context\r\n\r\nI tried to reproduce animations in this website : https://www.mirrormirror.fr/\r\n\r\nNot sure if it's a issue or not, can someone enlighten me ?",[2979,2980],{"name":2880,"color":2881},{"name":2981,"color":2982},"2.x","d4c5f9",10899,"2024-06-30T09:22:02Z","https://github.com/nuxt/nuxt/issues/10899",0.7734241,{"labels":2988,"number":2991,"owner":2869,"repository":2869,"state":2959,"title":2992,"updated_at":2993,"url":2994,"score":2995},[2989,2990],{"name":2880,"color":2881},{"name":2981,"color":2982},10141,"Having to click the back button twice","2023-10-19T20:21:27Z","https://github.com/nuxt/nuxt/issues/10141",0.7906891,["Reactive",2997],{},["Set"],["ShallowReactive",3000],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fyOYIFWinmpbOGS1x8JOXcam42RMMblS8JQ09f2dR5VY":-1},"/nuxt/ui/2105"]