Skip to content

Commit 35a3623

Browse files
gabor-farkaschrisvfritz
gabor-farkas
authored andcommitted
Fix standalone vue.js cdn url (#1146)
The other one results in `vue.common.js:245 Uncaught ReferenceError: process is not defined` while loading
1 parent f155cc6 commit 35a3623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you are an experienced frontend developer and want to know how Vue compares t
1717
The easiest way to try out Vue.js is using the [JSFiddle Hello World example](https://jsfiddle.net/chrisvfritz/50wL7mdz/). Feel free to open it in another tab and follow along as we go through some basic examples. Or, you can <a href="https://gist.githubusercontent.com/chrisvfritz/7f8d7d63000b48493c336e48b3db3e52/raw/ed60c4e5d5c6fec48b0921edaed0cb60be30e87c/index.html" target="_blank" download="index.html">create an <code>index.html</code> file</a> and include Vue with:
1818

1919
``` html
20-
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
20+
<script src="https://unpkg.com/vue"></script>
2121
```
2222

2323
The [Installation](installation.html) page provides more options of installing Vue. Note: We **do not** recommend that beginners start with `vue-cli`, especially if you are not yet familiar with Node.js-based build tools.

0 commit comments

Comments
 (0)