1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-01-29 14:28:30 +00:00

25 lines
466 B
JavaScript
Raw Normal View History

2015-06-21 16:34:27 +02:00
module.exports = {
2015-06-21 17:14:53 +02:00
template: require('../views/navigation.html'),
inherit: true,
2015-06-22 19:16:22 +02:00
data: function() {
return {
// todo: work with slug filter
navigation: [
{ name: 'Lobby', route: '/lobby' },
{ name: 'Deck Builder', route: '/deck-builder' },
{ name: 'Highscore', route: '/highscore' }
]
}
},
2015-06-21 17:14:53 +02:00
methods: {
searchMatch: function() {
2015-06-22 11:57:22 +02:00
this.modal = true;
// trigger match functions
2015-06-21 17:14:53 +02:00
}
}
2015-06-21 16:34:27 +02:00
};