mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 11:03:09 +02:00
13 lines
217 B
Vue
13 lines
217 B
Vue
<template>
|
|
<mk-home customize/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
mounted() {
|
|
document.title = `${(this as any).os.instanceName} - %i18n:@title%`;
|
|
}
|
|
});
|
|
</script>
|