configure : change-on-select= "true"
so that all levels can be selected. When the first level is selected in the following figure, the selection is immediately displayed in the input box
@change="catchange"
full use code
<el-cascader
size="mini"
placeholder=""
:props="catTreeProps"
:options="catTree"
filterable
:change-on-select="true"
@change="catchange"
></el-cascader>
is it bug or am I in the wrong position?