introduce.vue 410 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="container">
  3. </view>
  4. </template>
  5. <script>
  6. // import { userinfo } from '@/api/user.js';
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. onLoad(option){},
  13. onShow() {
  14. },
  15. //下拉刷新
  16. onPullDownRefresh() {
  17. this.loadData();
  18. },
  19. methods: {}
  20. };
  21. </script>
  22. <style lang="scss">
  23. page {
  24. min-height: 100%;
  25. background-color: #ffffff;
  26. .container {
  27. width: 100%;
  28. }
  29. }
  30. </style>