element el-cascader 级联选择器多选限制个数
Posted 久天.
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element el-cascader 级联选择器多选限制个数相关的知识,希望对你有一定的参考价值。
<el-cascader
v-model="formModelData.address"
:show-all-levels="false"
:collapse-tags="true"
:options="options"
:props="{ multiple: true, checkStrictly: true }"
:size="size"
:clearable="true"
>
</el-cascader>
@Watch('formModelData.address')
private addressWatch(newVal: any, oldVal: any) {
if (newVal.length > 5) {
this.$message({
message: '最多只支持选择5项',
duration: 1500,
type: 'warning'
})
this.$nextTick(() => {
this.formModelData.address= oldVal;
})
}
}
以上是关于element el-cascader 级联选择器多选限制个数的主要内容,如果未能解决你的问题,请参考以下文章
Element的el-cascader级联选择器组件获取选中的label