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
-->
-
+
+
+
+
+ $ayiEllipsisV
+
+
+
+
+
+ $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() {