-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">
Source:stackexchange.com
-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">