appApplet/pages/tabbar/project-list/project-list.vue

27 lines
346 B
Vue
Raw Normal View History

<template>
<view class="pad-x160">
<!-- 底部tab -->
<foot-tab :current="1"></foot-tab>
</view>
</template>
<script>
// 底部组件
import footTab from '@/components/foot-tabs/foot-tab.vue';
export default {
components:{
'foot-tab' :footTab
},
data() {
return {}
},
methods: {
}
}
</script>
<style>
</style>