This commit is contained in:
2020-10-29 20:45:50 +00:00
parent 10ef51938b
commit dae1f8c30e
3 changed files with 33 additions and 19 deletions

View File

@@ -14,6 +14,9 @@
:id="'dashitem-' + i"
v-on:dash-remove="dashRemove"
v-on:dash-move-start="dashMoveStart"
v-on:dash-move-back="dashMoveBack"
v-on:dash-move-forward="dashMoveForward"
v-on:dash-move-end="dashMoveEnd"
/>
</v-col>
</v-row>
@@ -55,6 +58,15 @@ export default {
dashMoveStart: function(item) {
console.log("home-dashboard:dashMoveStart", item);
},
dashMoveBack: function(item) {
console.log("home-dashboard:dashMoveBack", item);
},
dashMoveForward: function(item) {
console.log("home-dashboard:dashMoveForward", item);
},
dashMoveEnd: function(item) {
console.log("home-dashboard:dashMoveEnd", item);
},
dashRemove: function(item) {
console.log("home-dashboard:dashRemove", item);
}