You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

52 lines
1.4 KiB

import React from 'react';
import { Button, Input, Select, Space } from 'antd';
const style: React.CSSProperties = {
width: 500,
position: 'relative',
zIndex: 1,
border: '1px solid red',
backgroundColor: '#fff',
};
const handleChange = (value: string | string[]) => {
console.log(`selected ${value}`);
};
const App: React.FC = () => (
<Space style={style} wrap>
<Input style={{ width: 100 }} value="222" />
<Select
style={{ width: 120 }}
onChange={handleChange}
showSearch
placeholder="233"
options={[
{ value: 'jack', label: 'Jack' },
{ value: 'lucy', label: 'Lucy' },
{ value: 'disabled', disabled: true, label: 'Disabled' },
{ value: 'Yiminghe', label: 'yiminghe' },
{ value: 'long', label: 'I am super super long!' },
]}
/>
<Select
mode="multiple"
style={{ width: 120 }}
defaultValue={['lucy']}
onChange={handleChange}
showSearch
placeholder="233"
options={[
{ value: 'jack', label: 'Jack' },
{ value: 'lucy', label: 'Lucy' },
{ value: 'disabled', disabled: true, label: 'Disabled' },
{ value: 'Yiminghe', label: 'yiminghe' },
{ value: 'long', label: 'I am super super long!' },
]}
/>
<span className="debug-align">AntDesign</span>
<Button>222</Button>
</Space>
);
export default App;