ajax-vue
v0.0.2
Published
Ajax plugin for vue
Readme
Ajax-Vue
Vue Ajax plugin
Install
npm install ajax-vueUsage
//In main.js
import Vue from 'vue'
import Ajax from './assets/index'
Vue.use(Ajax)// In example.js
// responseText will be shown in console
Vue.$ajax('http://example.com',{data:{name:'jet'}}).then(() => {console.log(data)})API
Vue.$ajax(url[,options])
url
type: String,
request URLoptions
type: Object
*options.method:*
type: String,
default: 'GET'
*options.data:*
type: Object
query for request
*options.dataType*
type: String
default: 'json'