index.vue 625 B

123456789101112131415161718192021222324252627282930
  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. 'use strict';
  13. Object.defineProperty(exports, '__esModule', {
  14. value: true
  15. });
  16. var component_1 = require('../common/component');
  17. component_1.VantComponent({
  18. props: {
  19. title: String,
  20. border: {
  21. type: Boolean,
  22. value: true
  23. }
  24. }
  25. });
  26. </script>
  27. <style>
  28. @import './index.css';
  29. </style>