[Vuejs]-Vue JS v-attr=“expression1 && exp2 && exp3” are not working

0👍

probably your intention was

<div id="demo">
  <button v-for="item in itemlist" :disabled="item.qty >= 1 && item.qty <= 9">Click</button>
</div>   

See fiddle

Leave a comment