index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="wrap">
  3. <Content v-if="!$route.meta.children" />
  4. <ChildContent :menu="menu" v-else />
  5. </div>
  6. </template>
  7. <script>
  8. import Content from "./components/content.vue";
  9. import ChildContent from "./components/child-content.vue";
  10. export default {
  11. components: { Content, ChildContent },
  12. data() {
  13. return {
  14. menu: [
  15. {
  16. title: "评论我的",
  17. link: "/information/comment-on-my",
  18. numKey: "comment_num",
  19. },
  20. {
  21. title: "回复我的",
  22. link: "/information/reply-on-my",
  23. numKey: "reply_num",
  24. },
  25. {
  26. link: "/information/like-on-my",
  27. title: "点赞我的",
  28. numKey: "praise_num",
  29. shape: "round",
  30. },
  31. {
  32. title: "我的订阅",
  33. link: "/information/my-chasingFun",
  34. numKey: "follow_num",
  35. },
  36. "line",
  37. {
  38. title: "我的评论",
  39. link: "/information/my-comment",
  40. },
  41. {
  42. title: "我的回复",
  43. link: "/information/my-reply",
  44. },
  45. {
  46. title: "我的点赞",
  47. link: "/information/my-like",
  48. },
  49. {
  50. title: "我的发布",
  51. link: "/information/my-release",
  52. },
  53. {
  54. title: "我的收藏",
  55. link: "/information/my-collect",
  56. },
  57. {
  58. title: "学习历史",
  59. link: "/information/study-history",
  60. },
  61. ],
  62. };
  63. },
  64. };
  65. </script>
  66. <style lang="scss" scoped>
  67. .wrap {
  68. width: calc(100% - #{$navbarWidth});
  69. }
  70. </style>