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