Element ui select uses remove-tag?

this deleteTag function returns the selected value directly. Does the official defined parameter deleteTag (1Magne2) 1 is the selected value, and 2 is the value passed by itself, because the variables that are selected for reuse are different, so you want to pass parameters
.?
 <el-select v-model="departmentList" placeholder="" multiple @remove-tag="deleteTag">
            <el-option
                v-for="item in options"
                :key="item.value"
                :label="item.label"
                :value="item.value">
              <el-checkbox v-model="item.checked"  @change="selectVal(item.value, item.checked, departmentList)">{{item.value}}</el-checkbox>
            </el-option>
          </el-select>
May.25,2021
Menu