mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 09:14:27 +08:00
code refactor
This commit is contained in:
@@ -98,9 +98,7 @@ const pinCode = ref<string>('');
|
||||
const enablingWebAuthn = ref<boolean>(false);
|
||||
const transactionsStore = useTransactionsStore();
|
||||
|
||||
const pinCodeValid = computed<boolean>(() => {
|
||||
return pinCode.value?.length === 6 || false;
|
||||
});
|
||||
const pinCodeValid = computed<boolean>(() => pinCode.value?.length === 6 || false);
|
||||
|
||||
function confirm(): void {
|
||||
if (isEnableApplicationLock.value) {
|
||||
|
||||
Reference in New Issue
Block a user