dt_no_more.vue 333 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="no-more">{{msg}}</div>
  3. </template>
  4. <script>
  5. export default {
  6. props:{
  7. msg:{
  8. type:String,
  9. default:"—— 没有更多了 ——"
  10. }
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. .no-more{
  16. display: flex;
  17. justify-content: center;
  18. padding: 20upx 0;
  19. font-size:22upx;
  20. color:#ccc;
  21. }
  22. </style>