Javascript – Correct way of dynamically binding a tailwind classes in vuejs3/nuxtjs3?
does someone of you know, what the correct way of dynamically binding the content tailwind class in vuejs3/nuxtjs3 is? Let's assume, that const isExpanded = true <h1 :class="{'after:content-[`:`]' : isExpanded}">Hello</h1> I have tried it with backticks (`) but it ain't…