This commit is contained in:
2020-10-29 19:17:48 +00:00
parent e0622e6eb9
commit b037d49733
2 changed files with 30 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
:title="'Dash-' + i"
:id="'dashitem-' + i"
v-on:dash-remove="dashRemove"
v-on:dash-move-start="dashMoveStart"
/>
</v-col>
</v-row>
@@ -51,6 +52,9 @@ export default {
}
return ret;
},
dashMoveStart: function(item) {
console.log("home-dashboard:dashMoveStart", item);
},
dashRemove: function(item) {
console.log("home-dashboard:dashRemove", item);
}