mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 14:23:11 +02:00
27 lines
617 B
Vue
27 lines
617 B
Vue
<template>
|
|
<mk-ui>
|
|
<span slot="header">%fa:gamepad%%i18n:@reversi%</span>
|
|
<mk-reversi :game-id="$route.params.game" @nav="nav" :self-nav="false"/>
|
|
</mk-ui>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
mounted() {
|
|
document.title = '%i18n:common.name% %i18n:@reversi%';
|
|
document.documentElement.style.background = '#fff';
|
|
},
|
|
methods: {
|
|
nav(game, actualNav) {
|
|
if (actualNav) {
|
|
this.$router.push('/reversi/' + game.id);
|
|
} else {
|
|
// TODO: https://github.com/vuejs/vue-router/issues/703
|
|
this.$router.push('/reversi/' + game.id);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
</script>
|