Cascader 级联选择 change事件取末尾节点的值
<a-cascader
v-model:value="area"
v-model:options="options"
style="width: 100%"
@change="selectSmallClass"
placeholder="请选择">
</a-cascader>
// 选择
async function selectSmallClass(arr: any) {
let value=[...arr].pop()//取末尾节点的value值 (注意:这里要用浅拷贝,否则末尾节点展示不出来,因为.pop()会改变原数组)
await selectValue(value);
}