odtool / src /router /index.js
bot
chage callback path
1b464e5
raw
history blame contribute delete
443 Bytes
import { createRouter, createWebHistory } from 'vue-router'
import Request from '../components/onedrive/Request.vue'
import CallBack from '../components/onedrive/Callback.vue'
const routes = [
{
path: '/',
name: 'Home',
component: Request
},
{
path: '/onedrive/callback',
name: 'CallBack',
component: CallBack
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router