@@ -0,0 +1,16 @@
+<template>
+ <view class="no-data">
+ <slot />
+ </view>
+</template>
+
+<style lang="scss" scoped>
+.no-data {
+ height: calc(100% - 92rpx);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 32rpx;
+ color: #bbb;
+}
+</style>