Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

0.7.0

Compare
Choose a tag to compare
@steffans steffans released this 25 Jan 12:32
· 320 commits to develop since this release

New

  • New upload option, to listen to upload progress event
Vue.http.post('/someUrl', {data: {...}}, {
    upload: {
        onprogress: function (event) {
            // progress callback
        }
    }
}).then(...);