i'm use TailwindCss with vue
if i write component he has a prop like color:
<script setup>
defineProps({
color: String // give me like: green
})
</script>
<div class="`bg-${color}-500`"> </div>
But when I see the result the color does not appear because Tailwind did not understand that this color was used
