Reputation: 3886
I want Vue.js to show a div only if the defined variable is set to a value, as of now I can use v-show="variable", and if that variable is set, it will show, but I'd like to be able to do v-show"variable=5", and have it show, is that possible?
Upvotes: 0
Views: 2039
Reputation: 3886
I'm kind of embarrassed, it was simply because I was using a single equal sign instead of a double equal sign. v-show="variable == 5" works.
Upvotes: 1