ChildTwo.vue 306 B

1234567891011121314
  1. <template>
  2. <div class="child-two">
  3. <h1>子页面二</h1>
  4. <h1>用户名:{{$route.query.username}}</h1>
  5. <h1>用户年龄:{{$route.query.age}}</h1>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. mounted() {
  11. console.log(this.$route.query.username)
  12. },
  13. }
  14. </script>