Skip to content

Instantly share code, notes, and snippets.

@basebandit
Created June 23, 2018 12:34
Show Gist options
  • Save basebandit/5022dc4593457076ae8358564a39a130 to your computer and use it in GitHub Desktop.
Save basebandit/5022dc4593457076ae8358564a39a130 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import Router from 'vue-router'
import Stats from '@/components/Stats'
import Memory from '@/components/Memory'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Stats',
component: Stats
},
{
path: '/event/:title',
name: 'Memory',
component: Memory,
props: true
}
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment