Use pinia

This commit is contained in:
2026-07-06 19:49:28 +02:00
parent d345ea9ec3
commit 9324a08cf9
12 changed files with 160 additions and 151 deletions
+15
View File
@@ -0,0 +1,15 @@
<template>
<main>
<Transition>
<KeepAlive>
<Map map-key="main" :selectedRoutesId="[router.params.id]" />
</KeepAlive>
</Transition>
<SidebarContainer :selectedRoutesId="[router.params.id]" />
</main>
</template>
<script setup lang="ts">
const router = useRoute();
</script>
-6
View File
@@ -1,6 +0,0 @@
<template>
<main>
<SidebarContainer />
<Map />
</main>
</template>