add global loading state, update to use real data for clients table

This commit is contained in:
Casey 2025-11-04 08:33:14 -06:00
parent 2cfe7ed8e6
commit 464c62d1e5
12 changed files with 1075 additions and 194 deletions

View file

@ -2,6 +2,7 @@
import { IconoirProvider } from "@iconoir/vue";
import SideBar from "./components/SideBar.vue";
import CreateClientModal from "./components/modals/CreatClientModal.vue";
import GlobalLoadingOverlay from "./components/common/GlobalLoadingOverlay.vue";
import ScrollPanel from "primevue/scrollpanel";
</script>
@ -22,9 +23,12 @@ import ScrollPanel from "primevue/scrollpanel";
</ScrollPanel>
</div>
</div>
<!-- Global Modals -->
<CreateClientModal />
<!-- Global Loading Overlay -->
<GlobalLoadingOverlay />
</IconoirProvider>
</template>