--- order: 10 title: zh-CN: 栅格配置器 en-US: Playground --- ## zh-CN 可以简单配置几种等分栅格和间距。 ## en-US A simple playground for column count and gutter. ```jsx import { Row, Col, Slider } from 'antd'; const gutters = {}; const vgutters = {}; const colCounts = {}; [8, 16, 24, 32, 40, 48].forEach((value, i) => { gutters[i] = value; }); [8, 16, 24, 32, 40, 48].forEach((value, i) => { vgutters[i] = value; }); [2, 3, 4, 6, 8, 12].forEach((value, i) => { colCounts[i] = value; }); class App extends React.Component { state = { gutterKey: 1, vgutterKey: 1, colCountKey: 2, }; onGutterChange = gutterKey => { this.setState({ gutterKey }); }; onVGutterChange = vgutterKey => { this.setState({ vgutterKey }); }; onColCountChange = colCountKey => { this.setState({ colCountKey }); }; render() { const { gutterKey, vgutterKey, colCountKey } = this.state; const cols = []; const colCount = colCounts[colCountKey]; let colCode = ''; for (let i = 0; i < colCount; i++) { cols.push(
{`\n${colCode}
`}
{`> ); } } ReactDOM.render(\n${colCode}
`}