0.0.2 • Published 6 years ago

ajax-vue v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

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'
0.0.2

6 years ago

0.0.1

6 years ago