Sharkey/src/client/app/desktop/views/pages/home.vue
syuilo 7bd33ecc72 ✌️
2018-08-07 13:25:50 +09:00

31 lines
457 B
Vue

<template>
<mk-ui>
<mk-home :mode="mode" @loaded="loaded"/>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';
import * as config from '../../../config';
export default Vue.extend({
props: {
mode: {
type: String,
default: 'timeline'
}
},
mounted() {
document.title = config.name;
Progress.start();
},
methods: {
loaded() {
Progress.done();
}
}
});
</script>