I am trying to hide a div element using the v-if directive in an HTML element like so:
<template v-if="(selectedProducts != 'Static Graphic' || selectedProducts != 'Other Support')">
<div><strong>Content 2 Here</strong></div>
</template>
But, this doesn't work.
What's the correct way to write this logic/expression? MY JSFIDDLE demo
Thank you,