Skip to content

Commit

Permalink
perf: reset value after reopen LockScreenModal (#4269)
Browse files Browse the repository at this point in the history
* perf: replace deprecated @keypress with @keydown for Enter key handling

* perf: reset value after reopen LockScreenModal
  • Loading branch information
fzq1998 authored Aug 29, 2024
1 parent 3b2ed94 commit 88a7a9b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,22 @@ const emit = defineEmits<{
submit: RegisterEmits['submit'];
}>();
const formState = reactive({
lockScreenPassword: '',
submitted: false,
});
const [Modal] = useVbenModal({
onConfirm() {
handleSubmit();
},
});
const formState = reactive({
lockScreenPassword: '',
submitted: false,
onOpenChange(isOpen) {
if (isOpen) {
// reset value reopen
formState.submitted = false;
formState.lockScreenPassword = '';
}
},
});
const passwordStatus = computed(() => {
Expand Down Expand Up @@ -70,7 +77,7 @@ function handleSubmit() {
>
<div
class="mb-10 flex w-full flex-col items-center px-10"
@keypress.enter.prevent="handleSubmit"
@keydown.enter.prevent="handleSubmit"
>
<div class="w-full">
<div class="ml-2 flex w-full flex-col items-center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function toggleUnlockForm() {
<div
v-if="showUnlockForm"
class="flex-center size-full"
@keypress.enter.prevent="handleSubmit"
@keydown.enter.prevent="handleSubmit"
>
<div class="flex-col-center mb-10 w-[300px]">
<VbenAvatar :src="avatar" class="enter-x mb-6 size-20" />
Expand Down

0 comments on commit 88a7a9b

Please sign in to comment.