This commit is contained in:
syuilo 2018-03-07 18:55:02 +09:00
parent 0bca0e8a02
commit 7f0b9d933d
5 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,16 @@
<template>
<mk-ui>
<span slot="header">%fa:gamepad%オセロ</span>
<mk-othello/>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
mounted() {
document.title = 'Misskey オセロ';
document.documentElement.style.background = '#fff';
}
});
</script>