fix bug sort

This commit is contained in:
Warunee Tamkoo 2024-01-30 13:08:15 +07:00
parent fb0347fbe9
commit a7fa6e6cf4

View file

@ -79,7 +79,8 @@ async function onSubmit() {
watch(modal, () => {
if (modal.value === true) {
rows.value = store.row;
// rows.value = store.row;
rows.value = [...store.row]; // sort store
}
});
</script>