|
- <template>
- <view class="customlist">
- <slot></slot>
- <view v-if="showTips" class="padding text-gray text-center">{{ tips }}</view>
- </view>
- </template>
-
- <script>
- export default {
- name: 'l-customlist',
-
- props: {
- showTips: {},
- tips: { default: '已加载全部项目' }
- }
- }
- </script>
|