blob: e749412b97de9ab706f6009de368fbafeceb4bb3 [file] [log] [blame]
<script>
export default {
name: 'AuthRedirect',
created() {
const hash = window.location.search.slice(1)
window.opener.location.href = window.location.origin + '/login#' + hash
window.close()
}
}
</script>