Skip to content

Instantly share code, notes, and snippets.

@harryWonder
Created October 26, 2020 10:12
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 harryWonder/8d3cfc949e614c99bda5ce47b7593c97 to your computer and use it in GitHub Desktop.
Save harryWonder/8d3cfc949e614c99bda5ce47b7593c97 to your computer and use it in GitHub Desktop.
The router file for the ld-fullstack blog
import Welcome from '../views/Welcome';
import Dashboard from '../views/Dashboard';
export default [
{ path: '/', alias: '', name: 'Welcome', component: Welcome },
{ path: '/home', alias: '/dashboard', name: 'Dashboard', component: Dashboard },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment