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

32 lines
861 B
Vue
Raw Normal View History

2018-08-03 16:34:58 +03:00
<template>
<mk-ui>
2019-02-18 02:48:00 +02:00
<template v-slot:header><span style="margin-right:4px;"><fa icon="gamepad"/></span>{{ $t('reversi') }}</template>
<x-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';
import i18n from '../../../../i18n';
2018-08-03 16:34:58 +03:00
export default Vue.extend({
i18n: i18n('mobile/views/pages/games/reversi.vue'),
components: {
XReversi: () => import('../../../../common/views/components/games/reversi/reversi.vue').then(m => m.default)
},
2018-08-03 16:34:58 +03:00
mounted() {
2018-11-09 01:26:32 +02:00
document.title = `${this.$root.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) {
2019-01-21 10:20:41 +02:00
this.$router.push(`/games/reversi/${game.id}`);
2018-08-05 07:40:26 +03:00
} else {
// TODO: https://github.com/vuejs/vue-router/issues/703
2019-01-21 10:20:41 +02:00
this.$router.push(`/games/reversi/${game.id}`);
2018-08-05 07:40:26 +03:00
}
2018-08-03 16:34:58 +03:00
}
}
});
</script>