project is made up of vue with element ui components. Now why can"t I click on it after I write a ternary expression in el-checkbox? The code is as follows:
<el-checkbox v-model="total_bet.checked == 1 ? true : false"></el-checkbox>data(){
      return {
      total_bet:{}
      }
}total_bet.checked returns 1 or 0 from the backend.
