diff --git a/src/App.vue b/src/App.vue index b1f1280..d825bff 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,7 +8,8 @@ import Status from './components/status.vue' const currentWorkingCategoryID = ref(1) - const summaryRef = ref(null); + const summaryRef = ref(null) + const statusRef = ref(null) const updateCurrentWorkingCategoryID = (id) =>{ currentWorkingCategoryID.value = id @@ -16,6 +17,7 @@ const refreshPage = () => { summaryRef.value.loadData() + statusRef.value.loadData() } @@ -23,7 +25,7 @@