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

2 years ago
  1. <template>
  2. <div style="padding-top: 180px; padding-left: 40px">
  3. {{
  4. $t("Please wait, system will direct to the original page automactically")
  5. }}
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. layout: "redirect",
  11. name: "socialCallback",
  12. created() {
  13. this.$router.push(
  14. this.localePath(this.$auth.$storage.getUniversal("userBeforePath") || "/")
  15. );
  16. },
  17. };
  18. </script>