If in view blade, it's like this :
<ul> @if ($a) @if (!$b) <li> <p>...</p> ... </li> @endif @endif ... </ul> I want change it to be vue component
I try like this :
<ul> <li v-if="a" v-if="!b"> <p>...</p> ... </li> ... </ul> Seems it's wrong
How can I do it correctly?
v-ifs?v-if="a && !b"should be enough.