prepare use of vue for game/replay

This commit is contained in:
Zutatensuppe 2021-05-13 16:58:21 +02:00
parent 343263be6c
commit 8e7aa7d453
7 changed files with 156 additions and 43 deletions

18
public/App.vue.js Normal file
View file

@ -0,0 +1,18 @@
export default {
name: 'app',
template: `
<div id="app">
<ul class="nav" v-if="showNav">
<li><router-link class="btn" :to="{name: 'index'}">Index</router-link></li>
<li><router-link class="btn" :to="{name: 'new-game'}">New game</router-link></li>
</ul>
<router-view />
</div>`,
computed: {
showNav () {
// TODO: add info wether to show nav to route props
return !['game', 'replay'].includes(this.$route.name)
},
},
}