index.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: "/image-text/comment-on-my",
  18. numKey: "comment_num",
  19. },
  20. {
  21. title: "回复我的",
  22. link: "/image-text/reply-on-my",
  23. numKey: "reply_num",
  24. },
  25. {
  26. link: "/image-text/like-on-my",
  27. title: "点赞我的",
  28. numKey: "praise_num",
  29. shape: "round",
  30. },
  31. {
  32. title: "我的订阅",
  33. link: "/image-text/my-chasingFun",
  34. numKey: "follow_num",
  35. },
  36. "line",
  37. {
  38. title: "我的评论",
  39. link: "/image-text/my-comment",
  40. },
  41. {
  42. title: "我的回复",
  43. link: "/image-text/my-reply",
  44. },
  45. {
  46. title: "我的点赞",
  47. link: "/image-text/my-like",
  48. },
  49. {
  50. title: "我的发布",
  51. link: "/image-text/my-release",
  52. },
  53. {
  54. title: "我的已购",
  55. link: "/image-text/my-buy",
  56. },
  57. {
  58. title: "我的收藏",
  59. link: "/image-text/my-collect",
  60. },
  61. {
  62. title: "学习历史",
  63. link: "/image-text/study-history",
  64. },
  65. ],
  66. };
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. .wrap {
  72. width: calc(100% - #{$navbarWidth});
  73. }
  74. </style>