Strange problems in the use of cascader in element

cascader official document

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

clipboard.png

@change="catchange"

clipboard.png

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?

Mar.16,2021

misread it.


seems to be like this. You can see that the demo on the official website is also like this.


v-model


normal has this function! By default, you can only choose the last level
. I wonder if the size of the following panel can be modified except that size= "mini" can customize the size?

Menu