-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
// TODO: optimize thumbnails generation for larger filesets |
// lifecycle
if (isBrowser) isAdvancedUpload.value = checkAdvancedUploadSupport();
watch(
() => props.modelValue,
async (newFiles) => {
// TODO: optimize thumbnails generation for larger filesets
thumbnails.value = await Promise.all(
newFiles.map((file) => getBase64FromImageFile(file))
);
},
{ immediate: true }
);
</script>