可拖动 |将参数传递给 :move
Vuedraggable | Passing a parameter to :move
有没有办法将参数传递给 :move 事件,例如:
<draggable :move="onMove(param)"> </draggable>
然后能够将其与事件一起使用,例如:
methods: {
onMove(event, param) {
// do stuff
}
}
你可以这样做:
<draggable :move="(event) => onMove(event, 'someOtherVariableInThisExampleJustAString')">
而且,自然地,像这样使用它:
methods: {
onMove(event, param) {
// do stuff
}
}
查看演示 fiddle:https://jsfiddle.net/acdcjunior/5scaju6w/
有没有办法将参数传递给 :move 事件,例如:
<draggable :move="onMove(param)"> </draggable>
然后能够将其与事件一起使用,例如:
methods: {
onMove(event, param) {
// do stuff
}
}
你可以这样做:
<draggable :move="(event) => onMove(event, 'someOtherVariableInThisExampleJustAString')">
而且,自然地,像这样使用它:
methods: {
onMove(event, param) {
// do stuff
}
}
查看演示 fiddle:https://jsfiddle.net/acdcjunior/5scaju6w/