From 656189fd8ccf509478423f9cf97fa546e70ec4ba Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 29 Oct 2020 18:56:59 +0000 Subject: [PATCH] --- ayanova/src/components/dash-base.vue | 46 +++++++++++++++++++++++++--- ayanova/src/views/home-dashboard.vue | 13 ++++++-- 2 files changed, 52 insertions(+), 7 deletions(-) diff --git a/ayanova/src/components/dash-base.vue b/ayanova/src/components/dash-base.vue index 7604dd1d..f09586f4 100644 --- a/ayanova/src/components/dash-base.vue +++ b/ayanova/src/components/dash-base.vue @@ -18,9 +18,27 @@ mdi-heart --> - + + + + + + + $ay.t('Remove') + + + {{ + item.name + }} + + + diff --git a/ayanova/src/views/home-dashboard.vue b/ayanova/src/views/home-dashboard.vue index 8ec58332..77b55093 100644 --- a/ayanova/src/views/home-dashboard.vue +++ b/ayanova/src/views/home-dashboard.vue @@ -1,7 +1,7 @@ @@ -40,12 +44,15 @@ export default { }); }, methods: { - TestItems: function() { + dashItems: function() { let ret = []; for (var i = 0; i < 12; i++) { ret.push({ index: i, title: `Dash ${i}` }); } return ret; + }, + dashRemove: function(item) { + console.log("home-dashboard:dashRemove", item); } }, data() {