Child.vue 244 B

1234567891011121314151617
  1. <template>
  2. <div>
  3. <h1>Child</h1>
  4. <hr>
  5. <hr>
  6. <GrandSon v-bind="$attrs"/>
  7. </div>
  8. </template>
  9. <script setup>
  10. import GrandSon from './GrandSon.vue'
  11. import {ref,reactive} from 'vue'
  12. </script>
  13. <style lang="scss" scoped>
  14. </style>