[Vuejs]-Unable to set a data property in Vue.js

0👍

To control the display of a division, I incorrectly used v-show as
v-show=”result_count=0“, instead of v-show=”result_count==0“. This was resetting the value of vm.result_count.

Leave a comment