rudeshark.net/src/client/app/desktop/views/pages/home-customize.vue

15 lines
242 B
Vue
Raw Normal View History

2018-02-16 09:22:39 +01:00
<template>
2018-02-21 07:30:03 +01:00
<mk-home customize/>
2018-02-16 09:22:39 +01:00
</template>
<script lang="ts">
import Vue from 'vue';
2018-08-07 06:25:50 +02:00
import * as config from '../../../config';
2018-02-16 09:22:39 +01:00
export default Vue.extend({
mounted() {
2018-08-07 06:25:50 +02:00
document.title = `${config.name} - %i18n:@title%`;
2018-02-16 09:22:39 +01:00
}
});
</script>