14 lines
360 B
Vue
14 lines
360 B
Vue
<script setup>
|
|
import VnCard from 'components/common/VnCard.vue';
|
|
import EntryDescriptor from './EntryDescriptor.vue';
|
|
import filter from './EntryFilter.js';
|
|
</script>
|
|
<template>
|
|
<VnCard
|
|
data-key="Entry"
|
|
url="Entries"
|
|
:descriptor="EntryDescriptor"
|
|
:filter="{ ...filter, where: { id: $route.params.id } }"
|
|
/>
|
|
</template>
|