This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user