index.vue 387 B

1234567891011121314151617181920
  1. <template>
  2. <IntegralPage></IntegralPage>
  3. </template>
  4. <script setup>
  5. defineOptions({ name: 'myWallet'})
  6. import IntegralPage from '@/views/integral/pointsManagement'
  7. import { useUserStore } from '@/store/user'
  8. const store = useUserStore()
  9. const updateAccountInfo = async () => {
  10. await store.getUserAccountInfo()
  11. }
  12. updateAccountInfo()
  13. </script>
  14. <style scoped lang="scss">
  15. </style>