File "method.js"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/js/action/method.js
File size: 330 bytes
MIME-type: text/plain
Charset: utf-8
import Action from '.'
export default class extends Action {
constructor(method, params, el, skipWatcher = false) {
super(el, skipWatcher)
this.type = 'callMethod'
this.method = method
this.payload = {
id: this.signature,
method,
params,
}
}
}