fix
songhuangfeng123
2022-03-31 6d348c6003c3b7ff2dfdd8dad6aa3f41fddd5d4a
1
2
3
4
5
6
7
8
9
10
<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>