@@ -111,6 +111,7 @@ onMounted(() => {
:label="$t('password')"
hint="4-12 位數密碼"
@click:append="showPassword = !showPassword"
+ @keyup.enter="submit"
required
></v-text-field>
@@ -77,9 +77,10 @@ onMounted(() => {
if (item.stored_file_name === e.data) {
image.file_name = item.file_name;
image.stored_file_name = item.stored_file_name;
+ mainStore.finishImage(image);
}
});
- mainStore.finishImage(image);
+
}, 1000);
};