Make a home for reviewing sites

This commit is contained in:
Eli Ribble 2026-04-16 07:03:45 +00:00
parent c4c22f6733
commit 671397ba81
No known key found for this signature in database
3 changed files with 16 additions and 2 deletions

View file

@ -74,7 +74,7 @@ body {
<script setup lang="ts">
import { computed, onMounted, ref, watch } from "vue";
import { useStoreReviewTask } from "@/store/review-task";
import { useStoreSite } from "@/store/site";
import { useSessionStore } from "@/store/session";
import maplibregl from "maplibre-gl";
import ThreeColumn from "@/components/layout/ThreeColumn.vue";
@ -92,6 +92,9 @@ interface Props {}
const props = withDefaults(defineProps<Props>(), {});
const storeSite = useStoreSite();
// Lifecycle
onMounted(async () => {});
onMounted(async () => {
storeSite.fetchAll();
});
</script>