el-cascader 设置选中任意一级
<el-form-item label="地址:" prop="FRegionId"> <el-cascader ref="refRegion" :options="CityRegionOption" v-model="FRegionId" @@change="FRegionchange" :props="{ checkStrictly: true }" clearable></el-cascader> </el-form-item>
watch: { handlerValue() { if (this.$refs.refRegion) { this.$refs.refRegion.dropDownVisible = false; //监听值发生变化就关闭它 } } }, mounted() { setInterval(function () { document.querySelectorAll('.el-cascader-node__label').forEach(el => { el.onclick = function () { if (this.previousElementSibling) this.previousElementSibling.click() } }) }, 1000) },

源文:
https://www.cnblogs.com/listen9436/p/12304268.html
https://www.cnblogs.com/whoamimy/p/12488790.html
此随笔或为自己所写、或为转载于网络。仅用于个人收集及备忘。

浙公网安备 33010602011771号