mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 16:33:09 +02:00
14 lines
242 B
Vue
14 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>
|