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