Vant 中文入门教程 Vant Panel 面板

2024-02-25 开发教程 Vant 中文入门教程 匿名 0

引入

import Vue from 'vue';
import { Panel } from 'vant';
Vue.use(Panel);

代码演示

基础用法

面板只是一个容器,里面可以放入自定义的内容

<van-panel title="标题" desc="描述信息" status="状态">
<div>内容</div>
</van-panel>

高级用法

使用slot自定义内容

<van-panel title="标题" desc="描述信息" status="状态">
<div>内容</div>
<div slot="footer">
<van-button size="small">按钮</van-button>
<van-button size="small" type="danger">按钮</van-button>
</div>
</van-panel>

API

Props

参数说明类型默认值
title标题string -
desc描述string -
status状态string -
icon标题左侧 图标名称或图片链接string -

Slots

名称说明
default自定义内容
header自定义 header
footer自定义 footer

实例演示