常用服务账户快捷入口
82我的订单
物流
3优惠券
收藏
收货地址
客服
发票
设置
<template>
<VGrid :border="false" :gutter="8">
<VGridItem text="订单">
<template #icon>
<img src="/icons/orders.svg" alt="">
</template>
</VGridItem>
<VGridItem text="物流">
<template #icon>
<img src="/icons/delivery.svg" alt="">
</template>
</VGridItem>
<VGridItem text="收藏">
<template #icon>
<img src="/icons/favorite.svg" alt="">
</template>
</VGridItem>
<VGridItem text="设置">
<template #icon>
<img src="/icons/settings.svg" alt="">
</template>
</VGridItem>
</VGrid>
</template><template>
<VGrid :column-num="3" :gutter="8">
<VGridItem text="入口" />
<VGridItem text="入口" />
<VGridItem text="入口" />
</VGrid>
</template><template>
<VGrid clickable>
<VGridItem text="消息" badge="3">
<template #icon>
<img src="/icons/message.svg" alt="">
</template>
</VGridItem>
<VGridItem text="提醒" dot>
<template #icon>
<img src="/icons/notice.svg" alt="">
</template>
</VGridItem>
</VGrid>
</template>| Prop | 类型 | 默认值 | 描述 |
|---|---|---|---|
columnNum | number | string | 4 | 列数 |
gutter | number | string | undefined | 宫格间距 |
border | boolean | true | 是否显示边框态 |
square | boolean | false | 是否方形格子 |
center | boolean | true | 是否居中内容 |
clickable | boolean | false | 是否开启点击态 |
direction | 'vertical' | 'horizontal' | 'vertical' | 内容方向 |
| Prop | 类型 | 默认值 | 描述 |
|---|---|---|---|
text | string | undefined | 文本 |
icon | string | undefined | 图标内容 |
badge | number | string | undefined | 徽标内容 |
dot | boolean | false | 是否显示小红点 |
url | string | undefined | 链接地址 |
to | string | undefined | 路由链接 |
span | number | string | 1 | 跨列数量 |
clickable | boolean | undefined | undefined | 覆盖父级点击态 |
| Slot | 描述 |
|---|---|
default | Grid 内容或 GridItem 自定义内容 |
icon | 自定义图标 |
text | 自定义文本 |