Skip to content

Instantly share code, notes, and snippets.

@dimitrisnl
Last active December 7, 2017 22:43
Show Gist options
  • Select an option

  • Save dimitrisnl/c5e74bbd0efed79eae2151ebd497c385 to your computer and use it in GitHub Desktop.

Select an option

Save dimitrisnl/c5e74bbd0efed79eae2151ebd497c385 to your computer and use it in GitHub Desktop.
import Overview from './TournamentOverview'
import Participants from './TournamentParticipants'
import Settings from './TourmamentSettings'
export default [
{
path: '',
name: 'tournament-overview',
component: Overview,
meta: {
requiresAuth: true
},
},
{
path: 'participants',
name: 'tournament-participants',
component: Participants,
meta: {
requiresAuth: true
},
},
{
path: 'settings',
name: 'tournament-settings',
component: Settings,
meta: {
requiresAuth: true
},
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment