mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 09:59:59 +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>
|