You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
305 B

  1. <template>
  2. <view class="customlist">
  3. <slot></slot>
  4. <view v-if="showTips" class="padding text-gray text-center">{{ tips }}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'l-customlist',
  10. props: {
  11. showTips: {},
  12. tips: { default: '已加载全部项目' }
  13. }
  14. }
  15. </script>