You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
398 B

<template>
<div style="padding-top: 180px; padding-left: 40px">
{{
$t("Please wait, system will direct to the original page automactically")
}}
</div>
</template>
<script>
export default {
layout: "redirect",
name: "socialCallback",
created() {
this.$router.push(
this.localePath(this.$auth.$storage.getUniversal("userBeforePath") || "/")
);
},
};
</script>