APPLE 025c69e553 wesmiler 点什么广告 há 3 anos atrás
..
.circleci 025c69e553 wesmiler 点什么广告 há 3 anos atrás
.github 025c69e553 wesmiler 点什么广告 há 3 anos atrás
dist 025c69e553 wesmiler 点什么广告 há 3 anos atrás
src 025c69e553 wesmiler 点什么广告 há 3 anos atrás
test 025c69e553 wesmiler 点什么广告 há 3 anos atrás
types 025c69e553 wesmiler 点什么广告 há 3 anos atrás
.eslintignore 025c69e553 wesmiler 点什么广告 há 3 anos atrás
.eslintrc.js 025c69e553 wesmiler 点什么广告 há 3 anos atrás
LICENSE 025c69e553 wesmiler 点什么广告 há 3 anos atrás
README.md 025c69e553 wesmiler 点什么广告 há 3 anos atrás
package.json 025c69e553 wesmiler 点什么广告 há 3 anos atrás
yarn.lock 025c69e553 wesmiler 点什么广告 há 3 anos atrás

README.md

vue-resource Build Downloads jsdelivr Version License

The plugin for Vue.js provides services for making web requests and handle responses using a XMLHttpRequest or JSONP.

Features

  • Supports the Promise API and URI Templates
  • Supports interceptors for request and response
  • Supports latest Firefox, Chrome, Safari, Opera and IE9+
  • Supports Vue 1.0 & Vue 2.0
  • Compact size 14KB (5.3KB gzipped)

Installation

You can install it via yarn or NPM.

$ yarn add vue-resource
$ npm install vue-resource

CDN

Available on jsdelivr, unpkg or cdnjs.

<script src="https://cdn.jsdelivr.net/npm/vue-resource@1.5.1"></script>

Example

{
  // GET /someUrl
  this.$http.get('/someUrl').then(response => {

    // get body data
    this.someData = response.body;

  }, response => {
    // error callback
  });
}

Documentation

Changelog

Details changes for each release are documented in the release notes.

Contribution

If you find a bug or want to contribute to the code or documentation, you can help by submitting an issue or a pull request.

License

MIT