encryptedSettingSecondStep.vue 613 B

12345678910111213141516171819202122
  1. <template>
  2. <div>
  3. <accountCenter-header/>
  4. <encryptedSetting-secondStep/>
  5. </div>
  6. </template>
  7. <script>
  8. import AccountCenterHeader from '~components/default/AccountCenterHeader.vue'
  9. import EncryptedSettingSecondStep from '~components/encrypted-setting/EncryptedSettingSecondStep.vue'
  10. export default {
  11. layout: 'default',
  12. components: {
  13. AccountCenterHeader,
  14. EncryptedSettingSecondStep
  15. },
  16. mounted () {
  17. if (this.$store.state.option.isMobile) {
  18. this.$router.push('/encrypted-setting/encryptedSetting?token=' + this.$route.query.token)
  19. }
  20. }
  21. }
  22. </script>