foot.vue 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div id="foot">
  3. <el-row>
  4. <el-col :span="24" class="main">
  5. <van-tabbar route>
  6. <van-tabbar-item icon="home-o" to="/admin/index">统计报表</van-tabbar-item>
  7. <van-tabbar-item icon="notes-o" to="/adminRefute">科技文章</van-tabbar-item>
  8. <van-tabbar-item icon="comment-o" to="/adminCommunity">社区话题</van-tabbar-item>
  9. <van-tabbar-item icon="question-o" to="/adminServe">咨询服务</van-tabbar-item>
  10. </van-tabbar>
  11. </el-col>
  12. </el-row>
  13. </div>
  14. </template>
  15. <script>
  16. import { mapState, createNamespacedHelpers } from 'vuex';
  17. export default {
  18. name: 'foot',
  19. props: {},
  20. components: {},
  21. data: function() {
  22. return {};
  23. },
  24. created() {},
  25. methods: {},
  26. computed: {
  27. ...mapState(['user']),
  28. },
  29. metaInfo() {
  30. return { title: this.$route.meta.title };
  31. },
  32. watch: {
  33. test: {
  34. deep: true,
  35. immediate: true,
  36. handler(val) {},
  37. },
  38. },
  39. };
  40. </script>
  41. <style lang="less" scoped></style>