1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/pages/@[user]/index.vue
2022-11-14 10:20:07 +08:00

14 lines
183 B
Vue

<script setup lang="ts">
const props = defineProps<{
modelValue?: boolean
}>()
const params = useRoute().params
</script>
<template>
<div>
{{ params }}
</div>
</template>