Hello!
Is it possible to load some library at the end of the panel <body>
? I am creating a plugin with a widget that would be much easier to make if I use Vue.js, but I don’t want to put the script tag for it in my widget’s main PHP file because it will be inserted somewhere in the middle of the page and cause render blocking.
It would be ideal if I can put Vue’s script tag at the bottom of the <body>
and my own script tag (that uses Vue) right after it. Is that possible? If not, what would be the best way to approach this?
Thanks!