stadtratmonitor-vue/src/views/TopicShow.vue

21 lines
465 B
Vue
Raw Normal View History

2023-06-26 21:41:56 +02:00
<script setup lang="ts">
import { computed } from 'vue'
import type { Paper } from '@/types'
import { useRouter, useRoute } from 'vue-router'
const props = defineProps({
papers: Array<Paper>,
})
const router = useRouter()
const route = useRoute()
const topicId = computed(() => {
return route.params.id
})
const topic = computed(() => {
props.papers?.find( (paper: any) => paper.reference == topicId )
})
2023-06-21 18:51:54 +02:00
</script>
<template>
{{ $route.name }}
</template>