Files
cheflinkuser/src/pages-store/pages/dishes/components/topic-member-zone.vue
T
2026-06-05 15:03:32 +08:00

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>