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