Element的el-cascader级联选择器组件获取选中的label
Posted dreamstartplace
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Element的el-cascader级联选择器组件获取选中的label相关的知识,希望对你有一定的参考价值。
方法一:给cascader
组件赋值一个别名ref="myCascader"
(注意:2.9.2 版本之前可用的方法)
1 this.$refs[‘myCascader‘].currentLabels
方法二:在 2.9.2 后官方新增了 getCheckedNodes() 方法
1 this.$refs.myCascader.getCheckedNodes()[0].pathLabels
以上是关于Element的el-cascader级联选择器组件获取选中的label的主要内容,如果未能解决你的问题,请参考以下文章
Element-UI级联选择器el-cascader报错Cannot read property level of null
Element的el-cascader级联选择器组件获取选中的label