|
- <template>
- <div class="app-container">
- <router-view />
- <van-tabbar route>
- <van-tabbar-item replace to="/onlineHome/publicity" icon="bullhorn-o">公示</van-tabbar-item>
- <van-tabbar-item replace to="/onlineHome/workbench" icon="apps-o">工作台</van-tabbar-item>
- <van-tabbar-item replace to="/onlineHome/home" icon="wap-home-o">家园</van-tabbar-item>
- <van-tabbar-item replace to="/onlineHome/my" icon="manager-o">我的</van-tabbar-item>
- </van-tabbar>
- </div>
- </template>
- <script>
- export default {
- name: "onlineHomeIndex",
- data() {
- return {
- active: 0,
-
- };
- },
- created() {
- ;
- },
- methods: {
-
- },
- };
- </script>
-
- <style scoped lang="scss">
- .app-container {
- padding-bottom: 64px;
- }
-
- </style>
|