0

有没有办法将参数传递给 :move 事件,例如:

<draggable :move="onMove(param)"> </draggable>

然后能够将其与以下事件一起使用:

methods: {
  onMove(event, param) {
    // do stuff
  }
}
4

1 回答 1

1

你可以这样做:

<draggable :move="(event) => onMove(event, 'someOtherVariableInThisExampleJustAString')">

而且,自然地,像这样使用它:

methods: {
  onMove(event, param) {
    // do stuff
  }
}

见演示小提琴:https ://jsfiddle.net/acdcjunior/5scaju6w/

于 2020-06-28T01:21:53.980 回答