index.vue 421 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class='content'>
  3. <view class='wrap'>
  4. <view></view>
  5. <view>
  6. </view>
  7. </view>
  8. <view>
  9. <view class='button'>一键刷新</view>
  10. <view class='button'>添加民宿</view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. var that
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. onLoad() {
  22. that = this
  23. },
  24. onShow(){
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>