18 lines
398 B
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>
|