烟花爆竹实名登记前端
祖安之光
2026-03-12 b69959f530c5c51daa19333879ddbf91675e830f
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>