main
vue 13 lines 348 Bytes
Raw
1 <template>
2 <div class="page @container flex flex-col gap-6">
3 <AgentDetails v-if="agentId" :agent-id />
4 </div>
5 </template>
6
7 <script setup lang="ts">
8 import { useRoute } from "vue-router"
9 import AgentDetails from "@/components/agents/AgentDetails"
10
11 const route = useRoute()
12 const agentId = route.params.id ? `${route.params.id}` : null
13 </script>