2022-03-14 09:09:10 +00:00
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<!-- 底部tab -->
|
|
|
|
<foot-tab :current="3"></foot-tab>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-03-18 00:54:51 +00:00
|
|
|
// 底部组件
|
|
|
|
import footTabOne from '@/components/foot-tabs/foot-tab-one.vue';
|
2022-03-14 09:09:10 +00:00
|
|
|
export default {
|
2022-03-18 00:54:51 +00:00
|
|
|
components:{
|
|
|
|
'foot-tab' :footTabOne
|
|
|
|
},
|
2022-03-14 09:09:10 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|