commit | author | age | ||
846bd0 | 1 | <template> |
I | 2 | <div class="myFriend" style="min-height: 950px;"> |
3 | ||
4 | <h1 style="text-align: center;">碎碎念</h1> | |
5dfef8 | 5 | <comment ref="myComment"></comment> |
846bd0 | 6 | </div> |
I | 7 | </template> |
8 | ||
9 | <script> | |
10 | import comment from "../mini/box12-comment.vue" | |
11 | export default { | |
12 | components: { | |
13 | comment | |
5dfef8 | 14 | }, |
I | 15 | mounted() { |
16 | this.$refs.myComment.updateCommentList(null); | |
17 | }, | |
846bd0 | 18 | } |
I | 19 | </script> |
20 | ||
21 | <style> | |
22 | </style> |