Run function AFTER route fully rendered in Nuxt.js
问题 Background: I'm building an SSR website using Nuxt. I want to run a script to fix some typography issues (orphaned text in headers). I can't do this UNTIL AFTER the DOM is rendered. How can I implement this function once so it runs after each page's DOM is rendered? It can be either in the Router or in a Nuxt Layout, or elsewhere. What I've tried: In my layout.vue , Mounted() only runs on the first load (as expected) and adding $nextTick doesn't seem to affect that. This is even true for