xbx #186

Merged
theluyuan merged 2 commits from xbx into master 2020-11-30 06:42:33 +00:00
2 changed files with 27 additions and 1 deletions
Showing only changes of commit de4096830b - Show all commits

View File

@ -144,7 +144,12 @@ const routes: Array<RouteRecordRaw> = [
path: '/about',
name: 'About',
component: () => import('../views/login/About.vue')
}
},{
path: '/wblogin',
name: 'About',
component: () => import('../views/login/wblogin.vue')
},
]
const router = createRouter({

View File

@ -0,0 +1,21 @@
<template>
</template>
<style lang="scss" scoped>
</style>
<script lang="ts">
import axios from "axios";
import { defineComponent } from "vue";
import { useRoute } from "vue-router";
export default defineComponent(({
setup(){
const code = useRoute().params.code;
axios.get(`https://api.weibo.com/oauth2/access_token?client_id=2754574056&client_secret=2f16267634db2de14cda7891c49aa54a&grant_type=authorization_code&redirect_uri=https://beelink.theluyuan.com/wblogin&code=${code}`).then((res)=>{
console.log(res)
})
}
}))
</script>