123456789101112131415161718192021222324252627 |
- <template>
- <div class="nomore">
- <img :src="bottomImg" alt="">
- </div>
- </template>
-
- <script>
- import bottomImg from '../../common/icon/bottomMsg.png'
- export default {
- data () {
- return {
- bottomImg
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .nomore{
- img{
- width: 100%;
- position: absolute;
- top: 40%;
- transform: translateX(-50%);
- }
- }
- </style>
|