时味苏州
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.

34 lines
385 B

3 years ago
<template>
4 months ago
<view class="bg">
<CustomTabBar :currentTab="2" />
3 years ago
</view>
</template>
<script>
4 months ago
import CustomTabBar from '@/components/CustomTabBar.vue';
3 years ago
export default {
4 months ago
components: {
CustomTabBar
},
3 years ago
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
4 months ago
.bg {
width: 100%;
min-height: 100vh;
background: #CDE29E;
3 years ago
}
</style>