I'm trying to add dynamic variables (props) on a Tailwind class but something is wrong :
:class="`w-${percent}/12: ${show}`"
This is the output of this code :
<div class="w-0 h-2 transition-all duration-1000 ease-out bg-indigo-600 rounded-lg w-11/12: true"></div>
I don't understand why ':true' is added.
Thanks for your help.