dashboard
repositories
filestore
activity
search
login
main
/
fireworkweb
烟花爆竹实名登记前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改
祖安之光
2026-03-12
8f6a8545c3cf50ff0feac85f7b3c57db8fc3a0b4
[fireworkweb.git]
/
src
/
views
/
login
/
authredirect.vue
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>