# Grid 栅格

<template>
    <div>
        <MantRow>
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
        </MantRow>
    </div>
</template>
Expand Copy
<template>
    <div>
        <MantRow :gutter="[36, 36]">
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
            <MantCol :flex="1">
                <div style="background-color: blue; height: 36px" />
            </MantCol>
        </MantRow>
    </div>
</template>
Expand Copy
参数 说明 类型 默认值
gutter 间距 Array undefined