<template> <div> <h1>Child</h1> <hr> <hr> <GrandSon v-bind="$attrs"/> </div> </template> <script setup> import GrandSon from './GrandSon.vue' import {ref,reactive} from 'vue' </script> <style lang="scss" scoped> </style>