Child.vue 427 B

123456789101112131415161718
  1. <template>
  2. <div>
  3. <h1 class="h-26 text-6xl">子组件</h1>
  4. <hr class="h-15" />
  5. <hr class="h-15" />
  6. <GrandSon v-bind="$attrs"></GrandSon>
  7. </div>
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref, reactive } from "vue";
  11. import GrandSon from "./GrandSon.vue";
  12. // 避免attrs自动挂载到根元素上变成多余的属性
  13. defineOptions({ inheritAttrs: false });
  14. </script>
  15. <style lang="scss" scoped>
  16. </style>