28 lines
366 B
Vue
28 lines
366 B
Vue
<template>
|
|
<view class="pad-x180">
|
|
<!-- 底部tab -->
|
|
<foot-tab current='4'></foot-tab>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// 底部组件
|
|
import footTab from '@/components/foot-tabs/foot-tab.vue';
|
|
export default {
|
|
components:{'foot-tab' :footTab},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|