[Vuejs]-Conditional rendering is not working in vuejs v-if

-1👍

problem was v-if="user"

<span class="user-options" id="user-opt" v-if="user ">

instead of above i used this code and everything is resolved

  <span class="user-options" id="user-opt" v-if="user != null">

Leave a comment