user.vue 609 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="user">
  3. <!--页面加载动画-->
  4. <rf-loading v-if="loading"></rf-loading>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. components: {
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. // 小程序分享
  16. onShareAppMessage() {
  17. return {
  18. title: '',
  19. path: '/pages/index/index'
  20. }
  21. },
  22. async onShow() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang='scss' scoped>
  29. </style>