12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div id="footInfo">
- <el-row>
- <van-tabbar v-model="active">
- <van-tabbar-item to="/" icon="home-o">首页</van-tabbar-item>
- <van-tabbar-item to="/class/index" icon="friends-o">班级名单</van-tabbar-item>
- <van-tabbar-item to="/question/index" icon="question-o">问卷调查</van-tabbar-item>
- <van-tabbar-item to="/user/index" icon="user-o">个人信息</van-tabbar-item>
- </van-tabbar>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'footInfo',
- props: {},
- components: {},
- data: () => ({
- active: 0,
- }),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- p {
- padding: 0;
- margin: 0;
- }
- .link {
- padding: 6px 0 0 0;
- text-align: center;
- }
- .link p {
- text-decoration: none;
- }
- </style>
|