Sharkey/src/client/app/mobile/views/pages/games/reversi.vue

27 lines
624 B
Vue
Raw Normal View History

2018-08-03 16:34:58 +03:00
<template>
<mk-ui>
<span slot="header"><span style="margin-right:4px;"><fa icon="gamepad"/></span>%i18n:@reversi%</span>
2018-08-05 07:40:26 +03:00
<mk-reversi :game-id="$route.params.game" @nav="nav" :self-nav="false"/>
2018-08-03 16:34:58 +03:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
mounted() {
2018-08-19 15:07:18 +03:00
document.title = `${(this as any).os.instanceName} %i18n:@reversi%`;
2018-08-03 16:34:58 +03:00
},
methods: {
2018-08-05 07:40:26 +03:00
nav(game, actualNav) {
if (actualNav) {
2018-09-01 17:12:51 +03:00
this.$router.push(`/reversi/${game.id}`);
2018-08-05 07:40:26 +03:00
} else {
// TODO: https://github.com/vuejs/vue-router/issues/703
2018-09-01 17:12:51 +03:00
this.$router.push(`/reversi/${game.id}`);
2018-08-05 07:40:26 +03:00
}
2018-08-03 16:34:58 +03:00
}
}
});
</script>