ajax-vue
v0.0.2
Published
Ajax plugin for vue
Downloads
1
Readme
Ajax-Vue
Vue Ajax plugin
Install
npm install ajax-vue
Usage
//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 URL
options
type: Object
*options.method:*
type: String,
default: 'GET'
*options.data:*
type: Object
query for request
*options.dataType*
type: String
default: 'json'