Files
sbnews/uniapp/src/pages/match/match.vue
T
2026-06-11 12:15:29 +08:00

15 lines
395 B
Vue

<template>
<match-shell-page initial-view="match" :route-options="routeOptions" />
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
import MatchShellPage from '@/packages_match/components/MatchShellPage.vue'
const routeOptions = ref<Record<string, any>>({})
onLoad((options) => {
routeOptions.value = options || {}
})
</script>