uni-app checkbox限制选中数量 移除选中样式

<uni-popup ref="carType" type="bottom">
      <uni-card class="content-carType" title="所需车型" :is-full="true">
        <checkbox-group class="content-carType__checkbox-group" @change="carTypeChange">
          <label v-for="(item,index) in carTypes" :key="index">
            <checkbox
              :value="item.value"
              :disabled="item.disabled"
              :checked="item.checked"
              style="transform: scale(0.7);"
            />
            

你可能感兴趣的:(uni-app,checkbox)