dashboard
repositories
filestore
activity
search
login
main
/
xjFirework.web
原gitlab中xjFirework.web
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
remove and commit
郑永安
2023-06-19
2befd4a5d3733520b69ed97da88e675b6b086a3c
[xjFirework.web.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>