Sharkey/src/client/app/desktop/views/pages/home-customize.vue
syuilo 7bd33ecc72 ✌️
2018-08-07 13:25:50 +09:00

15 lines
242 B
Vue

<template>
<mk-home customize/>
</template>
<script lang="ts">
import Vue from 'vue';
import * as config from '../../../config';
export default Vue.extend({
mounted() {
document.title = `${config.name} - %i18n:@title%`;
}
});
</script>