mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-16 10:31:00 -07:00
12 lines
208 B
Vue
12 lines
208 B
Vue
<template>
|
|
<mk-home customize/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
export default Vue.extend({
|
|
mounted() {
|
|
document.title = 'Misskey - ホームのカスタマイズ';
|
|
}
|
|
});
|
|
</script>
|