douyin.vue 393 B

12345678910111213141516
  1. <template>
  2. <div>123</div>
  3. </template>
  4. <script>
  5. import { getQueryObject } from '@/utils'
  6. import { setStorage } from '@/utils/storage'
  7. export default {
  8. created() {
  9. const urlQuery = getQueryObject()
  10. urlQuery.state = urlQuery.state.slice(0, urlQuery.state.indexOf('#'))
  11. setStorage('zp_douyin_code', urlQuery.code)
  12. window.location.href = window.location.origin
  13. }
  14. }
  15. </script>