Is there anyone who knows how to correctly bind the content
Tailwind class dynamically in Vue.js 3/Nuxt.js 3? Let's say we have const isExpanded = true
<h1 :class="{'after:content-[`:`]' : isExpanded}">Hello</h1>
I attempted using backticks (`) but it didn't work.
Your assistance would be greatly appreciated.