mirror of
https://github.com/elk-zone/elk.git
synced 2024-12-15 15:41:47 +03:00
13 lines
183 B
Vue
13 lines
183 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
modelValue?: boolean
|
|
}>()
|
|
|
|
const params = useRoute().params
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
{{ params }}
|
|
</div>
|
|
</template>
|