/*! For license information please see 979.b1c4a044.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["979"],{38642:function(s,a,n){"use strict";n.r(a);var t=n("80681");let l=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Quickly and easily create layouts with van-row
and van-col
.
Register component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Col, Row } from 'vant';\n\nconst app = createApp();\napp.use(Col);\napp.use(Row);\n
\nLayout are based on 24-column. The attribute span
in Col
means the number of column the grid spans. Of course, You can use offset
attribute to set number of spacing on the left side of the grid.
<van-row>\n <van-col span="8">span: 8</van-col>\n <van-col span="8">span: 8</van-col>\n <van-col span="8">span: 8</van-col>\n</van-row>\n\n<van-row>\n <van-col span="4">span: 4</van-col>\n <van-col span="10" offset="4">offset: 4, span: 10</van-col>\n <van-col span="6">span: 6</van-col>\n</van-row>\n\n<van-row>\n <van-col offset="12" span="12">offset: 12, span: 12</van-col>\n</van-row>\n
\nSet grid spacing using gutter
attribute. The default value is 0.
<van-row gutter="20">\n <van-col span="8">span: 8</van-col>\n <van-col span="8">span: 8</van-col>\n <van-col span="8">span: 8</van-col>\n</van-row>\n
\nIf you want to set the vertical spacing, you can set [horizontal, vertical]
as an array.
<!-- set the vertical spacing -->\n<van-row :gutter="[20, 20]">\n <van-col span="12">span: 12</van-col>\n <van-col span="12">span: 12</van-col>\n <van-col span="12">span: 12</van-col>\n <van-col span="12">span: 12</van-col>\n</van-row>\n
\n<van-row justify="center">\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n</van-row>\n\n<van-row justify="end">\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n</van-row>\n\n<van-row justify="space-between">\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n</van-row>\n\n<van-row justify="space-around">\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n <van-col span="6">span: 6</van-col>\n</van-row>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
gutter | \nGrid spacing\uFF08px\uFF09 | \nnumber | string | Array | \n- | \n
tag | \nCustom element tag | \nstring | \ndiv | \n
justify | \nFlex main axis, can be set to end/center/space-around/space-between | \nstring | \nstart | \n
align | \nFlex cross axis, be set to center/bottom | \nstring | \ntop | \n
wrap | \nWhether to wrap | \nboolean | \ntrue | \n
Attribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
span | \nnumber of column the grid spans | \nnumber | string | \n- | \n
offset | \nnumber of spacing on the left side of the grid | \nnumber | string | \n- | \n
tag | \nCustom element tag | \nstring | \ndiv | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when the row is clicked | \nevent: MouseEvent | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when the col is clicked | \nevent: MouseEvent | \n
The component exports the following type definitions:
\nimport type { ColProps, RowProps, RowAlign, RowJustify } from 'vant';\n
\n