update => API ออกคำสั่ง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-25 15:14:10 +07:00
parent 342529d979
commit f876abf651
4 changed files with 352 additions and 184 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { onBeforeMount, ref } from "vue";
import { onMounted, ref } from "vue";
import { useQuasar } from "quasar";
import { useRoute } from "vue-router";
@ -79,7 +79,7 @@ function onConfirmSignature() {
);
}
onBeforeMount(async () => {
onMounted(async () => {
await fetchData();
});
</script>