Files
x-forend/src/pages-sub/lottery/index.vue
T
2024-12-31 21:07:08 +08:00

20 lines
330 B
Vue

<script setup lang="ts">
import NavBar from '@/components/NavBar.vue'
</script>
<route lang="json5">
{
style: {
navigationBarTitleText: '幸运大转盘',
navigationBarBackgroundColor: '#fff',
navigationStyle: 'custom',
},
}
</route>
<template>
<view class="min-h-screen">
<NavBar />
</view>
</template>