1234567891011121314151617181920212223242526 |
- <template>
- <scroller>
- <div class="about">
- <img :src="img" alt="">
- </div>
- </scroller>
- </template>
- <script>
- export default {
- name: 'about',
- data() {
- return {
- img: 'http://pics.yiguanjia.club/2017-10-13-about.jpg'
- }
- }
- }
- </script>
- <style scoped>
- .about{
- /*margin-top: -60px;*/
- }
- img {
- display: block;
- width: 100%;
- }
- </style>
|