mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
536 B
Vue
27 lines
536 B
Vue
<template>
|
|
<cell-group :class="b()">
|
|
<slot name="header">
|
|
<cell :class="b('header')" :title="title" :label="desc" :value="status" />
|
|
</slot>
|
|
<div :class="b('content')">
|
|
<slot />
|
|
</div>
|
|
<div v-if="$slots.footer" :class="b('footer')" class="van-hairline--top">
|
|
<slot name="footer" />
|
|
</div>
|
|
</cell-group>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'panel',
|
|
props: {
|
|
desc: String,
|
|
title: String,
|
|
status: String
|
|
}
|
|
});
|
|
</script>
|