/*! For license information please see 3358.55d1bd45.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["3358"],{65688:function(s,n,t){"use strict";t.r(n);var a=t("80681");let l=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Grid

\n

Intro

\n

Used to divide the page into blocks of equal width in the horizontal direction for displaying content or page navigation.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Grid, GridItem } from 'vant';\n\nconst app = createApp();\napp.use(Grid);\napp.use(GridItem);\n
\n

Usage

\n

Basic Usage

\n
<van-grid>\n  <van-grid-item icon="photo-o" text="Text" />\n  <van-grid-item icon="photo-o" text="Text" />\n  <van-grid-item icon="photo-o" text="Text" />\n  <van-grid-item icon="photo-o" text="Text" />\n</van-grid>\n
\n

Column Num

\n
<van-grid :column-num="3">\n  <van-grid-item v-for="value in 6" :key="value" icon="photo-o" text="Text" />\n</van-grid>\n
\n

Custom Content

\n
<van-grid :border="false" :column-num="3">\n  <van-grid-item>\n    <van-image\n      src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"\n    />\n  </van-grid-item>\n  <van-grid-item>\n    <van-image\n      src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"\n    />\n  </van-grid-item>\n  <van-grid-item>\n    <van-image\n      src="https://fastly.jsdelivr.net/npm/@vant/assets/apple-3.jpeg"\n    />\n  </van-grid-item>\n</van-grid>\n
\n

Square

\n
<van-grid square>\n  <van-grid-item v-for="value in 8" :key="value" icon="photo-o" text="Text" />\n</van-grid>\n
\n

Gutter

\n
<van-grid :gutter="10">\n  <van-grid-item v-for="value in 8" :key="value" icon="photo-o" text="Text" />\n</van-grid>\n
\n

Horizontal

\n
<van-grid direction="horizontal" :column-num="3">\n  <van-grid-item icon="photo-o" text="\u6587\u5B57" />\n  <van-grid-item icon="photo-o" text="\u6587\u5B57" />\n  <van-grid-item icon="photo-o" text="\u6587\u5B57" />\n</van-grid>\n
\n

Route

\n
<van-grid clickable :column-num="2">\n  <van-grid-item icon="home-o" text="Vue Router" to="/" />\n  <van-grid-item icon="search" text="URL" url="https://github.com" />\n</van-grid>\n
\n

Show Badge

\n
<van-grid :column-num="2">\n  <van-grid-item icon="home-o" text="Text" dot />\n  <van-grid-item icon="search" text="Text" badge="99+" />\n</van-grid>\n
\n

API

\n

Grid Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
column-numColumn Numnumber | string4
icon-sizeIcon sizenumber | string28px
gutterGutternumber | string0
borderWhether to show borderbooleantrue
centerWhether to center contentbooleantrue
squareWhether to be square shapebooleanfalse
clickableWhether to show click feedback when clickedbooleanfalse
directionContent arrangement direction, can be set to horizontalstringvertical
reverseWhether to reverse the position of icon and textbooleanfalse
\n

GridItem Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
textTextstring-
iconIcon name or URLstring-
icon-prefixIcon className prefixstringvan-icon
icon-colorIcon colorstring-
dotWhether to show red dotbooleanfalse
badgeContent of the badgenumber | string-
badge-propsProps of Badge, see Badge - propsBadgeProps-
urlLink URLstring-
toThe target route should navigate to when clicked on, same as the to prop of Vue Routerstring | object-
replaceIf true, the navigation will not leave a history recordbooleanfalse
\n

GridItem Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
clickEmitted when component is clickedevent: MouseEvent
\n

GridItem Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultCustom content
iconCustom icon
textCustom text
\n

Types

\n

The component exports the following type definitions:

\n
import type { GridProps, GridDirection, GridItemProps } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-grid-item-content-paddingvar(--van-padding-md) var(--van-padding-xs)-
--van-grid-item-content-backgroundvar(--van-background-2)-
--van-grid-item-content-active-colorvar(--van-active-color)-
--van-grid-item-icon-size28px-
--van-grid-item-text-colorvar(--van-text-color)-
--van-grid-item-text-font-sizevar(--van-font-size-sm)-
\n
'},null,8,l))}}}]);