stadtratmonitor-vue/src/views/TopicShow.vue

19 lines
298 B
Vue
Raw Normal View History

2023-06-21 18:51:54 +02:00
<script lang="ts">
export default {
computed: {
topicId() {
return this.$route.params.id
},
topic() {
this.papers?.find( (paper: any) => paper.reference == this.topicId )
}
},
2023-06-21 22:29:53 +02:00
props: {
papers: Array,
},
2023-06-21 18:51:54 +02:00
}
</script>
<template>
{{ $route.name }}
</template>