William L.
William L.

Reputation: 3886

Show a div with Vue.js when a variable is equal to a value

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

Answers (1)

William L.
William L.

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

Related Questions