| 123456789101112131415161718 |
- <template>
- <info :info="user.data"></info>
- </template>
- <script>
- import Info from '~components/mobile/user/Info.vue'
- export default {
- layout: 'mobile',
- components: {
- Info
- },
- mounted () {
- this.$nextTick(() => {
- this.$store.dispatch('user/updateUserEmail', { params: {returnUrl: window.location.href} })
- this.$store.dispatch('user/updateUserMobile', { params: {returnUrl: window.location.href} })
- })
- }
- }
- </script>
|