What is the difference between the 2 modes multiple
and tags
in Antd Select
? I tried both and they look the same to me.
<Select mode="tags" {...}>
{children}
</Select>
<Select mode="multiple" {...}>
{children}
</Select>
What is the difference between the 2 modes multiple
and tags
in Antd Select
? I tried both and they look the same to me.
<Select mode="tags" {...}>
{children}
</Select>
<Select mode="multiple" {...}>
{children}
</Select>
Share
Improve this question
asked Jan 2, 2021 at 8:42
NearHuscarlNearHuscarl
81.4k22 gold badges318 silver badges280 bronze badges
1 Answer
Reset to default 19It seems like there is no difference except that you can create new options in tags
mode (by pressing Enter if the value in the input field does not exist). You can't extend the options like that using multiple
mode.