mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
14 lines
183 B
Vue
14 lines
183 B
Vue
|
<script setup lang="ts">
|
||
|
const props = defineProps<{
|
||
|
modelValue?: boolean
|
||
|
}>()
|
||
|
|
||
|
const params = useRoute().params
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
{{ params }}
|
||
|
</div>
|
||
|
</template>
|