16 lines
348 B
Vue
16 lines
348 B
Vue
<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>
|