index.vue 866 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="van-panel van-hairline--top-bottom custom-class">
  3. <van-cell v-if="title || desc || status" :title="title" :label="desc" :value="status" custom-class="header-class" value-class="van-panel__header-value" />
  4. <slot v-else name="header" />
  5. <view class="van-panel__content">
  6. <slot />
  7. </view>
  8. <view v-if="useFooterSlot" class="van-panel__footer van-hairline--top footer-class">
  9. <slot name="footer" />
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import { VantComponent } from '../common/component';
  15. export default {
  16. data() {
  17. return {};
  18. },
  19. classes: ['header-class', 'footer-class'],
  20. props: {
  21. desc: String,
  22. title: String,
  23. status: String,
  24. useFooterSlot: Boolean
  25. }
  26. };
  27. </script>
  28. <style>
  29. @import './index.css';
  30. </style>