<!--For boolean attributes, use v-bind directive, but it'll work slight different-->
<button v-bind:disabled="isDisabled">Click me</button>
<!--If isDisabled has null, undefined, or false value, the disabled attribute will not be assigned to <button> element.-->