index.vue 576 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <view v-if="title" class="van-cell-group__title">
  4. {{ title }}
  5. </view>
  6. <view :class="'custom-class van-cell-group ' + (border ? 'van-hairline--top-bottom' : '')">
  7. <slot />
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import { VantComponent } from '../common/component';
  13. export default {
  14. data() {
  15. return {};
  16. },
  17. props: {
  18. title: String,
  19. border: {
  20. type: Boolean,
  21. default: true
  22. }
  23. }
  24. };
  25. </script>
  26. <style>
  27. @import './index.css';
  28. </style>