tailwind classes injected via $attrs not applying styles
tailwind classes are not being applied when injecting them via vue's $attrs. inspecting the nested div in chrome, bg-black is indeed passed to it, but no styles are applied...
// ParentComponent.vue
<FooComponent class="bg-black">Foo Component</FooComponent>// FooComponent.vue
<template>
<div>
<div v-bind="$attrs">
<slot />
</div>
</div>
</template>
<script lang="ts" setup>
defineOptions({ inheritAttrs: false });
</script>