File Manager

Path: /home/liffinac1/domains/bank.stellerpay.ca/public_html/vendor/livewire/livewire/js/action/

Viewing File: method.js

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,
        }
    }
}