时味苏州
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
429 B

3 years ago
<template>
4 months ago
<view class="content">
<CustomTabBar :currentTab="4" />
</view>
3 years ago
</template>
<script>
4 months ago
import CustomTabBar from '@/components/CustomTabBar.vue';
export default {
components: {
CustomTabBar
},
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
3 years ago
</script>
<style>
4 months ago
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>