Father.vue 338 B

123456789101112131415161718192021
  1. <template>
  2. <!-- 祖孙传参 $attrs -->
  3. <div class="father">
  4. <h1>父组件</h1>
  5. <Child v-bind="$attrs"></Child>
  6. </div>
  7. </template>
  8. <script setup name="Father4" lang="ts">
  9. import Child from './Child.vue';
  10. </script>
  11. <style scoped>
  12. .father {
  13. width: 600px;
  14. height: 600px;
  15. background: plum;
  16. margin: 0 auto;
  17. }
  18. </style>