You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Advanced Usage, Adding examples to the onError hook (Reference rfc) :
...
onError(error,retry,fail,attempts){if(error.message.match(/fetch/)&&attempts<=3){// retry on fetch errors, 3 max attemptsretry()}else{// Note that retry/fail are like resolve/reject of a promise:// one of them must be called for the error handling to continue.fail()}}
...
resolveComponent
Modify parameter descriptions:
Accepts one argument: `component` --> Accepts one argument: `name`