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
Using vuelidate creates components that do not have an $el property, but still have _hasMetaInfo set to true, which results in the setInterval never being cleared. There may be other plugins that create similar components.
Changing the line to if (this.$el && this.$el.offsetParent !== null) return would resolve this issue.
The text was updated successfully, but these errors were encountered:
https://github.com/declandewet/vue-meta/blob/776ddf62a233079dbd0c90cfdd8f8fc749188fcd/src/shared/plugin.js#L89-L93
Using vuelidate creates components that do not have an
$el
property, but still have_hasMetaInfo
set totrue
, which results in thesetInterval
never being cleared. There may be other plugins that create similar components.Changing the line to
if (this.$el && this.$el.offsetParent !== null) return
would resolve this issue.The text was updated successfully, but these errors were encountered: