fix กรรมการและการประชุม

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-10-24 10:04:36 +07:00
parent c10b32e899
commit 95dcc45177
5 changed files with 39 additions and 50 deletions

View file

@ -260,13 +260,9 @@ function inputEdit(val: boolean) {
};
}
onMounted(() => {
onMounted(async () => {
if (props.data) {
showLoader();
setTimeout(async () => {
await fetchForm(props.data);
hideLoader();
}, 1000);
await fetchForm(props.data);
}
});
</script>