123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <div class="wrap">
- <Content v-if="!$route.meta.children" />
- <ChildContent :menu="menu" v-else />
- </div>
- </template>
- <script>
- import Content from "./components/content.vue";
- import ChildContent from "./components/child-content.vue";
- export default {
- components: { Content, ChildContent },
- data() {
- return {
- menu: [
- {
- title: "评论我的",
- link: "/information/comment-on-my",
- numKey: "comment_num",
- },
- {
- title: "回复我的",
- link: "/information/reply-on-my",
- numKey: "reply_num",
- },
- {
- link: "/information/like-on-my",
- title: "点赞我的",
- numKey: "praise_num",
- shape: "round",
- },
- {
- title: "我的订阅",
- link: "/information/my-chasingFun",
- numKey: "follow_num",
- },
- "line",
- {
- title: "我的评论",
- link: "/information/my-comment",
- },
- {
- title: "我的回复",
- link: "/information/my-reply",
- },
- {
- title: "我的点赞",
- link: "/information/my-like",
- },
- {
- title: "我的发布",
- link: "/information/my-release",
- },
- {
- title: "我的收藏",
- link: "/information/my-collect",
- },
- {
- title: "学习历史",
- link: "/information/study-history",
- },
- ],
- };
- },
- };
- </script>
- <style lang="scss" scoped>
- .wrap {
- width: calc(100% - #{$navbarWidth});
- }
- </style>
|