qirong
2024-02-28 68921acbd1509d7cacef9ebdc4c0f764433ca252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <div class="layout-page">
    <router-view></router-view>
 
    <!-- 配置route,开启路由模式,就可以当routerlink一样用 -->
    <van-tabbar route>
      <van-tabbar-item icon="smile-o" to="/article">面经</van-tabbar-item>
      <van-tabbar-item icon="star-o" to="/collect">收藏</van-tabbar-item>
      <van-tabbar-item icon="like-o" to="/like">喜欢</van-tabbar-item>
      <van-tabbar-item icon="user-circle-o" to="/user">我的</van-tabbar-item>
    </van-tabbar>
  </div>
</template>
 
<script>
export default {
  name: 'layout-page'
}
</script>
 
<style lang="less" scoped></style>