Skip to content

Commit c24a17f

Browse files
committed
update repo links
1 parent e8507ca commit c24a17f

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

source/examples/hackernews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ order: 9
1010
<a href="http://vuejs.github.io/vue-hackernews" target="_blank"><img style="width:100%" src="/images/hn.png"></a>
1111
</div>
1212

13-
> [[Source](https://github.com/yyx990803/vue-hackernews)]
13+
> [[Source](https://github.com/vuejs/vue-hackernews)]

source/examples/todomvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ order: 8
88
99
<iframe width="100%" height="500" src="todomvc/index.html" allowfullscreen="allowfullscreen" frameborder="0"></iframe>
1010

11-
> [[Source](https://github.com/yyx990803/vue/tree/dev/examples/todomvc)]
11+
> [[Source](https://github.com/vuejs/vue/tree/dev/examples/todomvc)]

source/guide/application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,4 +216,4 @@ NODE_ENV=production browserify -e main.js | uglifyjs -c -m > build.js
216216

217217
## An App Example
218218

219-
The [Vue.js Hackernews Clone](https://github.com/yyx990803/vue-hackernews) is an example application that uses Webpack + vue-loader for code organization, Director.js for routing, and HackerNews' official Firebase API as the backend. It's by no means a big application, but it demonstrates the combined usage of the concepts discussed on this page.
219+
The [Vue.js Hackernews Clone](https://github.com/vuejs/vue-hackernews) is an example application that uses Webpack + vue-loader for code organization, Director.js for routing, and HackerNews' official Firebase API as the backend. It's by no means a big application, but it demonstrates the combined usage of the concepts discussed on this page.

source/guide/comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Instead of a Virtual DOM, Vue.js uses the actual DOM as the template and keeps r
3030

3131
API-wise, one issue with React (or JSX) is that the render function often involves a lot of logic, and ends up looking more like a piece of program (which in fact it is) rather than a visual representation of the interface. For some developers this is a bonus, but for designer/developer hybrids like me, having a template makes it much easier to think visually about the design and CSS. JSX mixed with JavaScript logic breaks that visual model I need to map the code to the design. In contrast, Vue.js pays the cost of a lightweight data-binding DSL so that we have a visually scannable template and with logic encapsulated into directives and filters.
3232

33-
Another issue with React is that because DOM updates are completely delegated to the Virtual DOM, it's a bit tricky when you actually **want** to control the DOM yourself (although theoretically you can, you'd be essentially working against the library when you do that). For applications that needs ad-hoc custom DOM manipulations, especially animations with complex timing requirements, this can become a pretty annoying restriction. On this front, Vue.js allows for more flexibility and there are [multiple FWA/Awwwards winning sites](https://github.com/yyx990803/vue/wiki/Projects-Using-Vue.js#interactive-experiences) built with Vue.js.
33+
Another issue with React is that because DOM updates are completely delegated to the Virtual DOM, it's a bit tricky when you actually **want** to control the DOM yourself (although theoretically you can, you'd be essentially working against the library when you do that). For applications that needs ad-hoc custom DOM manipulations, especially animations with complex timing requirements, this can become a pretty annoying restriction. On this front, Vue.js allows for more flexibility and there are [multiple FWA/Awwwards winning sites](https://github.com/vuejs/vue/wiki/Projects-Using-Vue.js#interactive-experiences) built with Vue.js.
3434

3535
## Ember
3636

source/guide/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ gz_size: "23.52"
1515
Simply download and include with a script tag. `Vue` will be registered as a global variable.
1616

1717
<div id="downloads">
18-
<a class="button" href="https://raw.github.com/yyx990803/vue/{{vue_version}}/dist/vue.js" download>Development Version</a><span class="light info">With full warnings and debug mode</span>
18+
<a class="button" href="https://raw.github.com/vuejs/vue/{{vue_version}}/dist/vue.js" download>Development Version</a><span class="light info">With full warnings and debug mode</span>
1919

20-
<a class="button" href="https://raw.github.com/yyx990803/vue/{{vue_version}}/dist/vue.min.js" download>Production Version</a><span class="light info">Warnings stripped, {{gz_size}}kb min+gzip</span>
20+
<a class="button" href="https://raw.github.com/vuejs/vue/{{vue_version}}/dist/vue.min.js" download>Production Version</a><span class="light info">Warnings stripped, {{gz_size}}kb min+gzip</span>
2121
</div>
2222

2323
### CDN
@@ -26,7 +26,7 @@ Available on [jsdelivr](//cdn.jsdelivr.net/vue/{{vue_version}}/vue.min.js) or [c
2626

2727
### CSP-compliant build
2828

29-
Some environments, such as Google Chrome Apps, enforces Content Security Policy (CSP) and does not allow the use of `new Function()` for evaluating expressions. In these cases you can use the [CSP-compliant build](https://github.com/yyx990803/vue/tree/csp/dist) instead.
29+
Some environments, such as Google Chrome Apps, enforces Content Security Policy (CSP) and does not allow the use of `new Function()` for evaluating expressions. In these cases you can use the [CSP-compliant build](https://github.com/vuejs/vue/tree/csp/dist) instead.
3030

3131
## NPM
3232

@@ -35,7 +35,7 @@ $ npm install vue
3535
# for csp-compliant version:
3636
$ npm install vue@csp
3737
# for dev build (from GitHub):
38-
$ npm install yyx990803/vue#dev
38+
$ npm install vuejs/vue#dev
3939
```
4040

4141
## Bower

source/guide/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ Vue.use(VueRouter)
7373

7474
- [vue-element](https://github.com/vuejs/vue-element): Register Custom Elements with Vue.js.
7575

76-
- [List of User Contributed Tools](https://github.com/yyx990803/vue/wiki/User-Contributed-Components-&-Tools)
76+
- [List of User Contributed Tools](https://github.com/vuejs/vue/wiki/User-Contributed-Components-&-Tools)

themes/vue/layout/index.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<li><a href="/guide/" class="nav-link">Guide</a></li>
55
<li><a href="/api/" class="nav-link">API</a></li>
66
<li><a href="/examples/" class="nav-link">Examples</a></li>
7-
<li><a href="https://github.com/yyx990803/vue" class="nav-link" target="_blank">GitHub</a></li>
7+
<li><a href="https://github.com/vuejs/vue" class="nav-link" target="_blank">GitHub</a></li>
88
<li><a href="http://forum.vuejs.org" class="nav-link" target="_blank">Forum</a></li>
9-
<li><a href="https://gitter.im/yyx990803/vue" class="nav-link" target="_blank">Chat</a></li>
9+
<li><a href="https://gitter.im/vuejs/vue" class="nav-link" target="_blank">Chat</a></li>
1010
</ul>
1111
<div id="logo-wrap">
1212
<img id="logo" src="/images/logo.png">

themes/vue/layout/partials/main_menu.ejs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<li><a href="/guide/" class="nav-link<%- page.path.match(/guide/) ? ' current' : '' %>">Guide</a></li>
77
<li><a href="/api/" class="nav-link<%- page.path.match(/api/) ? ' current' : '' %>">API</a></li>
88
<li><a href="/examples/" class="nav-link<%- page.path.match(/examples/) ? ' current' : '' %>">Examples</a></li>
9-
<li><a href="https://github.com/yyx990803/vue" class="nav-link" target="_blank">GitHub</a></li>
9+
<li><a href="https://github.com/vuejs/vue" class="nav-link" target="_blank">GitHub</a></li>
1010
<li><a href="http://forum.vuejs.org" class="nav-link" target="_blank">Forum</a></li>
11-
<li><a href="https://gitter.im/yyx990803/vue" class="nav-link" target="_blank">Chat</a></li>
11+
<li><a href="https://gitter.im/vuejs/vue" class="nav-link" target="_blank">Chat</a></li>

todomvc/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Here are some links you may find helpful:
1818
Get help from other Vue.js users:
1919

2020
* [Vue.js on Twitter](https://twitter.com/vuejs)
21-
* [Vue.js on Gitter](https://gitter.im/yyx990803/vue)
21+
* [Vue.js on Gitter](https://gitter.im/vuejs/vue)
2222
* [Vue.js discussion repo](https://github.com/vuejs/Discussion/issues)
2323

2424
_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
2525

2626
## Credit
2727

28-
This TodoMVC application was created by [Evan You](http://evanyou.me).
28+
This TodoMVC application was created by [Evan You](http://evanyou.me).

0 commit comments

Comments
 (0)