diff --git a/packages/sandbox-hooks/url-listeners.js b/packages/sandbox-hooks/url-listeners.js index 1c109f19103..e28c72cd7ec 100644 --- a/packages/sandbox-hooks/url-listeners.js +++ b/packages/sandbox-hooks/url-listeners.js @@ -25,7 +25,7 @@ function pathWithHash(location) { return `${location.pathname}${location.hash}`; } -function isInsiveVue(el) { +function isInsideVue(el) { if (el === document.body) return false return el.__vue__ || el._vnode || isInsideVue(el.parentElement) }