© 2026 Hedgehog Software, LLC
// FooComponent.vue <template> <div> <div v-bind="$attrs"> <slot /> </div> </div> </template> <script lang="ts" setup> defineOptions({ inheritAttrs: false }); </script>
// ParentComponent.vue <FooComponent class="bg-black">Foo Component</FooComponent>