wip
This commit is contained in:
parent
06eabcbc63
commit
6c495268ae
15 changed files with 230 additions and 95 deletions
29
src/web/app/common/views/components/othello.game.vue
Normal file
29
src/web/app/common/views/components/othello.game.vue
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<template>
|
||||
<div>
|
||||
<header>黒:{{ game.black_user.name }} 白:{{ game.white_user.name }}</header>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
export default Vue.extend({
|
||||
props: ['game'],
|
||||
data() {
|
||||
return {
|
||||
game: null,
|
||||
connection: null,
|
||||
connectionId: null
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.connection = (this as any).os.streams.othelloGameStream.getConnection();
|
||||
this.connectionId = (this as any).os.streams.othelloGameStream.use();
|
||||
|
||||
this.connection.on('set', this.onSet);
|
||||
},
|
||||
beforeDestroy() {
|
||||
this.connection.off('set', this.onSet);
|
||||
(this as any).streams.othelloGameStream.dispose(this.connectionId);
|
||||
},
|
||||
});
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue