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