mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 17:19:11 +08:00
91821d4d3a
* feat: select edit demo to data driven * feat: edit demo to data driven Co-authored-by: 二货机器人 <smith3816@gmail.com>
58 lines
828 B
Markdown
58 lines
828 B
Markdown
---
|
|
order: 23
|
|
title:
|
|
zh-CN: 无边框
|
|
en-US: Bordered-less
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
无边框样式。
|
|
|
|
## en-US
|
|
|
|
Bordered-less style component.
|
|
|
|
```tsx
|
|
import { Select } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Select
|
|
defaultValue="lucy"
|
|
style={{ width: 120 }}
|
|
bordered={false}
|
|
options={[
|
|
{
|
|
value: 'jack',
|
|
label: 'Jack',
|
|
},
|
|
{
|
|
value: 'lucy',
|
|
label: 'Lucy',
|
|
},
|
|
{
|
|
value: 'Yiminghe',
|
|
label: 'yiminghe',
|
|
},
|
|
]}
|
|
/>
|
|
<Select
|
|
defaultValue="lucy"
|
|
style={{ width: 120 }}
|
|
disabled
|
|
bordered={false}
|
|
options={[
|
|
{
|
|
value: 'lucy',
|
|
label: 'Lucy',
|
|
},
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|