opnform/client/composables/useIsIframe.js

7 lines
157 B
JavaScript

export const useIsIframe = () => {
if (process.client) {
return window.location !== window.parent.location || window.frameElement
}
return false
}