the cascade selector of element ui is intended to support multiple selections displayed in the column in the form of tag, as shown in figure
html code
<el-cascader
:options="options"
:show-all-levels="false"
v-model="selectedOptions"
@change="addOption"
></el-cascader>
in each change callback, you will get a [parent value, subset value]. I want to display only the subset value and then achieve the effect of multiple selections.
I originally intended to dynamically add the current value, selectedOptions format to selectedOptions push in each change callback as [[parent value, subset value], [parent value, subset value]], but did not implement it. I don"t know if anyone has ever realized