modelThree.vue 407 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <image class="topIMg" src="http://dmsimg.66km.com/thFiles/7C057545-E11E-40F5-AD3C-637EF653B417.jpg" mode=""></image>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. title: 'Hello'
  13. }
  14. },
  15. onLoad() {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. .topIMg{
  23. width: 100%;
  24. }
  25. </style>