toggle.vue 412 B

123456789101112131415
  1. <template>
  2. <div></div>
  3. </template>
  4. <script>
  5. export default {
  6. // name: 'wechattoggle',
  7. // layout: 'mobileNoHeader',
  8. mounted() {
  9. this.$nextTick(() => {
  10. window.open('https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxd29bbca61728b189&redirect_uri=http://wwpszp.natappfree.cc&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect')
  11. })
  12. }
  13. }
  14. </script>