summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/widgets/customize.vue
blob: eb719103820832e5815b4da1e46542f2db0697a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
<div class="mkw-customize">
	<ui-button @click="customize()">{{ $t('@.customize-home') }}</ui-button>
</div>
</template>

<script lang="ts">
import define from '../../../common/define-widget';
import i18n from '../../../i18n';

export default define({
	name: 'customize',
}).extend({
	i18n: i18n(),
	methods: {
		customize(date) {
			location.href = '/?customize';
		}
	}
});
</script>