RetrievePasswordStep3.vue 467 B

1234567891011121314151617181920
  1. <template>
  2. <a-result
  3. status="success" :title="$t('lang.RetrievePasswordStep3.title')"
  4. :sub-title="$t('lang.RetrievePasswordStep3.subTitle')"
  5. >
  6. <template #extra>
  7. <a-button key="console" type="primary" @click="toLogin">{{ $t('lang.RetrievePasswordStep3.signInNow') }}</a-button>
  8. </template>
  9. </a-result>
  10. </template>
  11. <script>
  12. export default {
  13. methods: {
  14. toLogin: function () {
  15. this.$router.push('/login');
  16. },
  17. },
  18. };
  19. </script>