const route = useRoute()
const { data } = await useAsyncData(route.path, () => {
return queryCollection('docs')
.order('props.date', 'DESC')
.all()
})
const route = useRoute()
const { data } = await useAsyncData(route.path, () => {
return queryCollection('docs')
.order('props.date', 'DESC')
.all()
})