10 lines
No EOL
200 B
Vue
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> |