This commit is contained in:
こぴなたみぽ 2018-02-16 17:22:39 +09:00
parent 4be168ad51
commit fad3132d18
2 changed files with 12 additions and 12 deletions

View file

@ -1,12 +0,0 @@
<mk-home-customize-page>
<mk-home ref="home" mode="timeline" customize={ true }/>
<style lang="stylus" scoped>
:scope
display block
</style>
<script lang="typescript">
this.on('mount', () => {
document.title = 'Misskey - ホームのカスタマイズ';
});
</script>
</mk-home-customize-page>

View file

@ -0,0 +1,12 @@
<template>
<mk-home customize/>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
mounted() {
document.title = 'Misskey - ホームのカスタマイズ';
}
});
</script>