mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 07:33:10 +02:00
9f5dc2c0df
* wip * Rename * Clean up * Clean up * wip * wip * Enable tree shaking * ✌️ * ✌️ * wip * wip * Clean up
26 lines
624 B
Vue
26 lines
624 B
Vue
<template>
|
|
<mk-ui>
|
|
<span slot="header"><span style="margin-right:4px;"><fa icon="gamepad"/></span>%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 = `${(this as any).os.instanceName} %i18n:@reversi%`;
|
|
},
|
|
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>
|