v-show doesn't seem to work
Author: RohanTalipCreated Jun 7, 2019Updated Jun 11, 2022
Labelsbughelp wanted
This doesn't work as expected for me:
<template>
<view>
<text v-show="false">Hide this</text>
</view>
</template>i.e. The "Hide this" text still shows up.
Also, the code example for v-show in the Vue Native documentation actually uses v-if:
https://vue-native.io/docs/conditional.html#v-show
Source: GeekyAnts/vue-native-core