vueComponent/ant-design-vue

borderRadiusLG will affect the style of the select drop-down box

joker77877 opened this issue · 0 comments

  • I have searched the issues of this repository and believe that this is not a duplicate.

Version

4.2.1

Environment

5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36

Reproduction link

Edit on CodeSandbox

Steps to reproduce

 <a-config-provider
        :theme="{
            token: {},
            components: {
                Select: {
                    borderRadiusLG: 99
                }
            }
        }"
    >
        <a-select
            ref="select"
            size="large"
            v-model:value="value1"
            style="width: 120px"
            :options="options1"
            @focus="focus"
            @change="handleChange"
        ></a-select>
        <a-button>点击</a-button>
    </a-config-provider>

What is expected?

does not affect

What is actually happening?

borderRadiusLG will affect the style of the select drop-down box