Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fhsinchy/eb059c43cbec942ce3320f4ef0ca80f6 to your computer and use it in GitHub Desktop.
Save fhsinchy/eb059c43cbec942ce3320f4ef0ca80f6 to your computer and use it in GitHub Desktop.
// src/router/index.js
import Vue from 'vue';
import VueRouter from 'vue-router';
import Home from '../views/Home.vue';
Vue.use(VueRouter);
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/callback',
name: 'OAuthCallbackHandler',
component: () => import('../views/OAuthCallbackHandler.vue'),
},
];
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes,
});
export default router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment