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

15 lines
242 B
Vue
Raw Normal View History

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