DescriptionList.vue 402 B

1234567891011121314151617181920
  1. <template>
  2. <view class="d-flex py3 border-bottom">
  3. <view class="f-size-26 text-color-9 w200">{{ title }}</view>
  4. <view class="f-size-26 text-color-3"><slot /></view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'DetailListItem',
  10. props: {
  11. title: {
  12. type: String,
  13. default: '',
  14. required: false
  15. }
  16. }
  17. }
  18. </script>