mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
14 lines
185 B
Vue
14 lines
185 B
Vue
<script setup lang="ts">
|
|
const router = useRouter()
|
|
</script>
|
|
|
|
<template>
|
|
<section>
|
|
{{ router.currentRoute.value.params.user }}
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|