18 lines
415 B
Vue
18 lines
415 B
Vue
<script setup lang="ts">
|
|
import FeaturedDishTopicPage from './featured-dish-topic-page.vue'
|
|
import { buildMemberZoneQuery, type RouteQueryMap } from '../utils/featured-dish-query'
|
|
|
|
defineProps<{
|
|
routeQuery?: RouteQueryMap
|
|
pageTitle?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<featured-dish-topic-page
|
|
:build-query="buildMemberZoneQuery"
|
|
:page-title="pageTitle"
|
|
:route-query="routeQuery"
|
|
/>
|
|
</template>
|