ptitlutins/app/pages/voyages/[id].vue
2025-09-15 23:03:42 +02:00

10 lines
No EOL
200 B
Vue

<template>
Voyage {{ route.params.id }}
</template>
<script setup lang="ts">
const route = useRoute()
// When accessing /posts/1, route.params.id will be 1
console.log(route.params.id)
</script>