mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
658 B
658 B
order | title | ||||
---|---|---|---|---|---|
23 |
|
zh-CN
无边框样式。
en-US
Bordered-less style component.
import { Select } from 'antd';
import React from 'react';
const { Option } = Select;
const App: React.FC = () => (
<>
<Select defaultValue="lucy" style={{ width: 120 }} bordered={false}>
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
<Option value="Yiminghe">yiminghe</Option>
</Select>
<Select defaultValue="lucy" style={{ width: 120 }} disabled bordered={false}>
<Option value="lucy">Lucy</Option>
</Select>
</>
);
export default App;