| 12345678910111213141516171819202122 |
- <template>
- <div>
- <accountCenter-header/>
- <phoneValidation-secondStep/>
- </div>
- </template>
- <script>
- import AccountCenterHeader from '~components/default/AccountCenterHeader.vue'
- import PhoneValidationSecondStep from '~components/validation/PhoneValidationSecondStep.vue'
- export default {
- layout: 'default',
- components: {
- AccountCenterHeader,
- PhoneValidationSecondStep
- },
- mounted () {
- if (this.$store.state.option.isMobile) {
- this.$router.push('/validation/phoneValidation?token=' + this.$route.query.token)
- }
- }
- }
- </script>
|