From 3d1239c1b42717e846149c65f47f86e1e500ce4d Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 10 Feb 2020 05:44:47 +0900 Subject: [PATCH] Better initial widgets --- src/client/app.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/client/app.vue b/src/client/app.vue index 31c7543f3..6c84dd048 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -234,8 +234,14 @@ export default Vue.extend({ if (this.widgets.length === 0) { this.$store.dispatch('settings/setWidgets', [{ - name: 'notifications', + name: 'calendar', id: 'a', data: {} + }, { + name: 'notifications', + id: 'b', data: {} + }, { + name: 'trends', + id: 'c', data: {} }]); } }