Skip to content

Commit e6adbd3

Browse files
committed
Merge remote-tracking branch 'upstream/master'
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
1 parent 6582221 commit e6adbd3

File tree

6 files changed

+53
-10
lines changed

6 files changed

+53
-10
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,38 @@ $ npm install -g hexo-cli
1111
$ npm install
1212
$ hexo server
1313
```
14+
15+
## En cours de traduction
16+
17+
La traduction pour ce projet de documentation est actuellement maintenu dans des dépôts forkés depuis celui-ci.
18+
19+
### Mandarin
20+
21+
* Dépôt de traduction - [/vuejs/cn.vuejs.org](https://github.com/vuejs/cn.vuejs.org)
22+
23+
### Japonais
24+
25+
* Dépôt de traduction - [/vuejs/jp.vuejs.org](https://github.com/vuejs/jp.vuejs.org)
26+
27+
### Russe
28+
29+
La traduction Russe est maintenu par Translation Gang.
30+
31+
* Dépôt de traduction — [/translation-gang/ru.vuejs.org](https://github.com/translation-gang/ru.vuejs.org)
32+
* Mainteneur principal - [Grigoriy Beziuk](https://gbezyuk.github.io)
33+
34+
### Italien
35+
36+
* Dépôt de traduction - [/vuejs/it.vuejs.org](https://github.com/vuejs/it.vuejs.org)
37+
38+
### Coréen
39+
40+
À FAIRE : fournir des informations ici
41+
42+
### Vous voulez participer à la traduction ?
43+
44+
Si vous vous sentez d'attaque pour une traduction seul, forkez simplement ce dépôt, créez un ticket « work-in-progress » pour informer les autres que vous êtes entrain de le traduire, et en avant.
45+
46+
Si vous êtes plutôt du genre à participer au sein d'une équipe, peut-être que Translation Gang est fait pour vous ? Faites nous savoir de quel manière vous êtes prêt à rejoindre cette communauté internationale de traduction open-source. N'hésitez pas à contacter [Grigoriy Beziuk](https://gbezyuk.github.io) ou n'importe qui parmi [l'équipe](https://github.com/orgs/translation-gang/people).
47+
48+
Et merci à vous par avance ;)

src/v2/api/index.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1750,21 +1750,27 @@ All lifecycle hooks automatically have their `this` context bound to the instanc
17501750
- `mode` - string, Controls the timing sequence of leaving/entering transitions. Available modes are `"out-in"` and `"in-out"`; defaults to simultaneous.
17511751
- `enter-class` - string
17521752
- `leave-class` - string
1753+
- `appear-class` - string
1754+
- `enter-to-class` - string
1755+
- `leave-to-class` - string
1756+
- `appear-to-class` - string
17531757
- `enter-active-class` - string
17541758
- `leave-active-class` - string
1755-
- `appear-class` - string
17561759
- `appear-active-class` - string
17571760

17581761
- **Events:**
17591762
- `before-enter`
1760-
- `enter`
1761-
- `after-enter`
17621763
- `before-leave`
1763-
- `leave`
1764-
- `after-leave`
17651764
- `before-appear`
1765+
- `enter`
1766+
- `leave`
17661767
- `appear`
1768+
- `after-enter`
1769+
- `after-leave`
17671770
- `after-appear`
1771+
- `enter-cancelled`
1772+
- `leave-cancelled` (`v-show` only)
1773+
- `appear-cancelled`
17681774

17691775
- **Usage:**
17701776

src/v2/guide/single-file-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Now we get:
2727
- [CommonJS modules](https://webpack.github.io/docs/commonjs.html)
2828
- [Component-scoped CSS](https://github.com/vuejs/vue-loader/blob/master/docs/en/features/scoped-css.md)
2929

30-
As promised, we can also use preprocessors such as Jade, Babel (with ES2015 modules), and Stylus for cleaner and more feature-rich components.
30+
As promised, we can also use preprocessors such as Pug, Babel (with ES2015 modules), and Stylus for cleaner and more feature-rich components.
3131

3232
<img src="/images/vue-component-with-preprocessors.png" style="display: block; margin: 30px auto">
3333

src/v2/guide/transitions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,7 @@ By default, this will use the transitions specified for entering and leaving. If
581581
<transition
582582
appear
583583
appear-class="custom-appear-class"
584+
appear-to-class="custom-appear-to-class" (>= 2.1.8 only)
584585
appear-active-class="custom-appear-active-class"
585586
>
586587
<!-- ... -->
@@ -595,6 +596,7 @@ and custom JavaScript hooks:
595596
v-on:before-appear="customBeforeAppearHook"
596597
v-on:appear="customAppearHook"
597598
v-on:after-appear="customAfterAppearHook"
599+
v-on:appear-cancelled="customAppearCancelledHook"
598600
>
599601
<!-- ... -->
600602
</transition>

src/v2/guide/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Then all methods, properties, and parameters will be type checked. For example,
2020

2121
### Compilation Options
2222

23-
Vue's declaration files require the `--lib DOM,ES2015.Promise` [compiler option](https://www.typescriptlang.org/docs/handbook/compiler-options.html). You can pass this option to the `tsc` command or add the equivalent to a `tsconfig.json` file.
23+
Vue's declaration files require the `--lib DOM,ES5,ES2015.Promise` [compiler option](https://www.typescriptlang.org/docs/handbook/compiler-options.html). You can pass this option to the `tsc` command or add the equivalent to a `tsconfig.json` file.
2424

2525
### Accessing Vue's Type Declarations
2626

themes/vue/layout/layout.ejs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!DOCTYPE html>
33
<html lang="en">
44
<head>
5-
<title><%- page.title ? page.title + ' - ' : '' %>Vue.js</title>
5+
<title><%- page.title ? page.title + ' ' : '' %>Vue.js</title>
66
<meta charset="utf-8">
77
<meta name="description" content="<%- theme.site_description %>">
88
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
99

1010
<meta property="og:type" content="article">
11-
<meta property="og:title" content="<%- page.title ? page.title + ' - ' : '' %>vue.js">
11+
<meta property="og:title" content="<%- page.title ? page.title + ' ' : '' %>Vue.js">
1212
<meta property="og:description" content="<%- theme.site_description %>">
1313
<meta property="og:image" content="https://<%- theme.root_domain %>/images/logo.png">
1414

1515
<meta name="twitter:card" content="summary">
16-
<meta name="twitter:title" content="<%- page.title ? page.title + ' - ' : '' %>vue.js">
16+
<meta name="twitter:title" content="<%- page.title ? page.title + ' ' : '' %>Vue.js">
1717
<meta name="twitter:description" content="<%- theme.site_description %>">
1818
<meta name="twitter:image" content="https://<%- theme.root_domain %>/images/logo.png">
1919

0 commit comments

Comments
 (0)