1234567891011121314151617181920212223242526272829 |
- <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>
- import { VantComponent } from '../common/component';
- export default {
- data() {
- return {};
- },
- props: {
- title: String,
- border: {
- type: Boolean,
- default: true
- }
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|