Improve desktop UX (#4262)
* wip * wip * wip * wip * wip * wip * Merge * wip * wip * wip * wip * wip * wip
This commit is contained in:
21
src/client/app/desktop/views/widgets/customize.vue
Normal file
21
src/client/app/desktop/views/widgets/customize.vue
Normal file
@@ -0,0 +1,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>
|
Reference in New Issue
Block a user