TalkPage.vue 189 B

123456789101112
  1. <template>
  2. <div class="talk-container">
  3. <h1>Talk</h1>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. mounted() {
  9. this.$emit("changePage",'1003')
  10. },
  11. }
  12. </script>