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

15 lines
242 B
Vue
Raw Normal View History

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