@@ -140,6 +140,7 @@ For convenience aliases have been provided for all supported request methods.
140140##### axios.get(url[ , config] )
141141##### axios.delete(url[ , config] )
142142##### axios.head(url[ , config] )
143+ ##### axios.options(url[ , config] )
143144##### axios.post(url[ , data[ , config]] )
144145##### axios.put(url[ , data[ , config]] )
145146##### axios.patch(url[ , data[ , config]] )
@@ -176,6 +177,7 @@ The available instance methods are listed below. The specified config will be me
176177##### axios#get(url[ , config] )
177178##### axios#delete(url[ , config] )
178179##### axios#head(url[ , config] )
180+ ##### axios#options(url[ , config] )
179181##### axios#post(url[ , data[ , config]] )
180182##### axios#put(url[ , data[ , config]] )
181183##### axios#patch(url[ , data[ , config]] )
@@ -308,7 +310,7 @@ These are the available config options for making requests. Only the `url` is re
308310 proxy: {
309311 host: ' 127.0.0.1' ,
310312 port: 9000 ,
311- auth: : {
313+ auth: {
312314 username: ' mikeymike' ,
313315 password: ' rapunz3l'
314316 }
0 commit comments