123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <view v-if="title" class="van-cell-group__title">
- {{ title }}
- </view>
- <view :class="'custom-class van-cell-group ' + (border ? 'van-hairline--top-bottom' : '')">
- <slot />
- </view>
- </view>
- </template>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- component_1.VantComponent({
- props: {
- title: String,
- border: {
- type: Boolean,
- value: true
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|