Sharkey/src/web/app/mobile/views/pages/othello.vue

17 lines
300 B
Vue
Raw Normal View History

2018-03-07 11:55:02 +02:00
<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>