summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/pages/home-customize.vue
blob: da5f15bb691dc56e838f55dedd20cd54467a4438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<template>
<mk-home customize/>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	mounted() {
		document.title = 'Misskey - %i18n:@title%';
	}
});
</script>