forget-password.vue 421 B

1234567891011121314151617
  1. <script lang="ts" setup>
  2. import { AuthenticationForgetPassword } from '@vben/common-ui';
  3. import { ref } from 'vue';
  4. defineOptions({ name: 'ForgetPassword' });
  5. const loading = ref(false);
  6. function handleSubmit(value: string) {
  7. // eslint-disable-next-line no-console
  8. console.log('reset email:', value);
  9. }
  10. </script>
  11. <template>
  12. <AuthenticationForgetPassword :loading="loading" @submit="handleSubmit" />
  13. </template>