20 lines
330 B
Vue
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>
|