about.vue 385 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <scroller>
  3. <div class="about">
  4. <img :src="img" alt="">
  5. </div>
  6. </scroller>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'about',
  11. data() {
  12. return {
  13. img: 'http://pics.yiguanjia.club/2017-10-13-about.jpg'
  14. }
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. .about{
  20. /*margin-top: -60px;*/
  21. }
  22. img {
  23. display: block;
  24. width: 100%;
  25. }
  26. </style>