27 lines
289 B
Vue
27 lines
289 B
Vue
|
<template>
|
||
|
<view>
|
||
|
<footTab :current="1"></footTab>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import footTab from '@/components/foot-tabs/foot-tab-one.vue';
|
||
|
export default {
|
||
|
components:{
|
||
|
footTab
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|