You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing and enabling the plugin the INP (Interaction to Next Paint) score moves from 160ms to 320ms in my testing.
The reason being that the vue.$destroy() is being called during the click event itself causing it to block that click event.
Wrapping it in 2 setTimeouts does solve the issue by decoupling it, however i'm unsure wether this makes the caching of the page in Turbo work as expected.
After installing and enabling the plugin the INP (Interaction to Next Paint) score moves from 160ms to 320ms in my testing.
The reason being that the
vue.$destroy()
is being called during the click event itself causing it to block that click event.Wrapping it in 2 setTimeouts does solve the issue by decoupling it, however i'm unsure wether this makes the caching of the page in Turbo work as expected.
I've also created hotwired/turbo#1359 in case it can only be solved there.
The text was updated successfully, but these errors were encountered: