Sharkey/src/client/app/desktop/views/components/game-window.vue

38 lines
676 B
Vue
Raw Normal View History

2018-03-07 10:48:32 +02:00
<template>
2018-03-09 18:48:16 +02:00
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="$destroy">
2018-03-07 10:48:32 +02:00
<span slot="header" :class="$style.header">%fa:gamepad%オセロ</span>
2018-03-09 18:48:16 +02:00
<mk-othello :class="$style.content" @gamed="g => game = g"/>
2018-03-07 10:48:32 +02:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-09 18:48:16 +02:00
import { url } from '../../../config';
2018-03-07 10:48:32 +02:00
2018-03-09 18:48:16 +02:00
export default Vue.extend({
data() {
return {
game: null
};
},
computed: {
popout(): string {
return this.game
? `${url}/othello/${this.game.id}`
: `${url}/othello`;
}
}
2018-03-07 10:48:32 +02:00
});
</script>
<style lang="stylus" module>
.header
> [data-fa]
margin-right 4px
.content
height 100%
overflow auto
</style>