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

0.6.0

Compare
Choose a tag to compare
@steffans steffans released this 04 Jan 14:36
· 335 commits to develop since this release

New

  • New URL transforms
Vue.url.transforms.push(function (options, next) {

    // modify url options
    options.params.test = 1; 

    // call next url transform
    var url = next(options);

    // return url
    return url;
});

Changed

  • Vue.Promise to uppercase