Skip to content

Commit 74fe9b4

Browse files
reed-jonesyyx990803
authored andcommitted
Update axios URL (vuejs#170)
Changed git repo from /mzabriskie/axios to /axios/axios
1 parent 7a84995 commit 74fe9b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/universal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Another thing to note is that you should avoid code that produces global side ef
1818

1919
Universal code cannot assume access to platform-specific APIs, so if your code directly uses browser-only globals like `window` or `document`, they will throw errors when executed in Node.js, and vice-versa.
2020

21-
For tasks shared between server and client but use different platform APIs, it's recommended to wrap the platform-specific implementations inside a universal API, or use libraries that do this for you. For example, [axios](https://github.com/mzabriskie/axios) is an HTTP client that exposes the same API for both server and client.
21+
For tasks shared between server and client but use different platform APIs, it's recommended to wrap the platform-specific implementations inside a universal API, or use libraries that do this for you. For example, [axios](https://github.com/axios/axios) is an HTTP client that exposes the same API for both server and client.
2222

2323
For browser-only APIs, the common approach is to lazily access them inside client-only lifecycle hooks.
2424

0 commit comments

Comments
 (0)