noChat.vue 478 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="no-chat">
  3. <i class="mee-icon"></i>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'noChat'
  9. }
  10. </script>
  11. <style lang="scss" scoped>
  12. .no-chat{
  13. height: 100%;
  14. background: #eeeeee;
  15. -webkit-box-flex: 1;
  16. -ms-flex: 1;
  17. flex: 1;
  18. position: relative;
  19. overflow: hidden;
  20. .mee-icon{
  21. display: block;
  22. background: url('../../assets/mee-logo.png') no-repeat;
  23. width: 84px;
  24. height: 96px;
  25. margin: 230px auto 0;
  26. }
  27. }
  28. </style>