14 lines
255 B
Vue
14 lines
255 B
Vue
|
<script setup lang="ts">
|
||
|
import {useRoute} from "vue-router";
|
||
|
import QqazkDetails from "~/components/tools/qqazk/QqazkDetails.vue";
|
||
|
|
||
|
const route = useRoute()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<QqazkDetails :id="route.params.id"/>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|