12345678910111213141516171819202122232425 |
- <template>
- <view class="home">
- <view>首页</view>
- <!-- 底部 导航栏 currentPage 当前页面ID -->
- <tab-bar :currentPage="0"></tab-bar>
- </view>
- </template>
- <script>
- //导入组件
- import tabBar from '@/components/tabbar/tabbar.vue'
- export default {
- data() {
- return {
- };
- },
- components:{
- tabBar
- },
- methods: {}
- };
- </script>
- <style>
- .home{min-height: 100vh;background: #f5f5f5;}
- </style>
|