微信

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="nomore">
  3. <img :src="bottomImg" alt="">
  4. </div>
  5. </template>
  6. <script>
  7. import bottomImg from '../../common/icon/bottomMsg.png'
  8. export default {
  9. data () {
  10. return {
  11. bottomImg
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .nomore{
  18. img{
  19. width: 100%;
  20. position: absolute;
  21. top: 40%;
  22. transform: translateX(-50%);
  23. }
  24. }
  25. </style>