15 lines
395 B
Vue
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>
|