Skip to content

Commit 48c3d6f

Browse files
committed
Merge remote-tracking branch 'upstream/master'
# Conflicts resolved: # src/v2/api/index.md # src/v2/style-guide/index.md # themes/vue/layout/index.ejs # themes/vue/layout/partials/ecosystem_dropdown.ejs
2 parents 51bc9f9 + d3a53a7 commit 48c3d6f

File tree

9 files changed

+36
-10
lines changed

9 files changed

+36
-10
lines changed

src/v2/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2431,7 +2431,7 @@ Used to denote a `<template>` element as a scoped slot, which is replaced by [`s
24312431

24322432
- **Utilisation :**
24332433

2434-
`<transition-group>` sert d'effets de transition pour de **multiples** éléments/composants. Le rendu de `<transition-group>` donne un nouvel élément dans le DOM. Par défaut, il s'agit d'un `<span>`, mais vous pouvez configurer le type d'élément en sortie via l'attribut `tag`.
2434+
`<transition-group>` sert d'effets de transition pour de **multiples** éléments / composants. Le rendu de `<transition-group>` donne un nouvel élément dans le DOM. Par défaut, il s'agit d'un `<span>`, mais vous pouvez configurer le type d'élément en sortie via l'attribut `tag`.
24352435

24362436
Notez que chaque enfant dans un `<transition-group>` doit avoir une **clé unique** pour que les animations fonctionnent correctement.
24372437

src/v2/guide/team.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,21 @@ order: 803
672672
reposPersonal: [
673673
'Justineo/vue-awesome', 'ecomfe/vue-echarts', 'ecomfe/veui'
674674
]
675+
},
676+
{
677+
name: 'ULIVZ',
678+
city: 'Hangzhou, China',
679+
languages: ['zh', 'en'],
680+
work: {
681+
role: 'Senior Frontend Developer',
682+
org: 'AntFinancial',
683+
orgUrl: 'https://www.antfin.com'
684+
},
685+
github: 'ulivz',
686+
twitter: '_ulivz',
687+
reposOfficial: [
688+
'vuepress'
689+
]
675690
}
676691
]))
677692

src/v2/style-guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ computed: {
17031703

17041704

17051705

1706-
### `v-if` / `v-if-else` / `v-else` sans `key` <sup data-p="d">faire attention</sup>
1706+
### `v-if` / `v-else-if`/ `v-else` sans `key` <sup data-p="d">faire attention</sup>
17071707

17081708
**Il est généralement préférable d'utiliser `key` avec `v-if` + `v-else`, si les éléments sont de même type (c.-à-d. avec deux éléments `<div>` par ex.).**
17091709

themes/vue/_config.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ platinum_sponsors_china:
1010
img: gitee.png
1111

1212
special_sponsors:
13-
- url: https://stdlib.com
14-
img: stdlib.png
13+
- url: https://code.xyz/
14+
img: codexyz.png
15+
description: Créer des APIs pour votre navigateur web
1516

1617
platinum_sponsors:
1718
- url: https://www.bitsrc.io/?utm_source=vue&utm_medium=vue&utm_campaign=vue&utm_term=vue&utm_content=vue
@@ -94,6 +95,9 @@ gold_sponsors:
9495
- url: https://syncfusion.com/products/vue
9596
img: syncfusion.png
9697
name: syncfusion
98+
- url: https://kintohub.com
99+
img: kintohub.png
100+
name: kinto hub
97101

98102
silver_sponsors:
99103
- url: https://dopamine.bg/
@@ -113,3 +117,9 @@ bronze_sponsors:
113117
- url: https://pullstring.com
114118
img: https://i.imgur.com/hQHW6TB.png
115119
name: pull string
120+
- url: https://www.earthlink.ro
121+
img: https://i.imgur.com/qX0SNa7.png
122+
name: earthlink
123+
- url: https://polyglotengineer.com/derek.pollard
124+
img: https://polyglotengineer.com/DP.png
125+
name: Derek Pollard

themes/vue/layout/index.ejs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030

3131
<div id="special-sponsor">
3232
<h3>Sponsors spéciaux</h3>
33-
<a href="https://stdlib.com/" target="_blank">
34-
<img src="/images/stdlib.png" style="width:160px" alt="Logo standard de la Bibliothèque">
33+
<% var specialSponsor = theme.special_sponsors[0]; %>
34+
<a href="<%- specialSponsor.url %>" target="_blank">
35+
<img src="<%- url_for(`/images/${specialSponsor.img}`) %>" style="width:160px" alt="Code.xyz Logo">
3536
<br>
36-
<span>Fonction en tant que plateforme de service et bibliothèque</span>
37+
<span><%- specialSponsor.description %></span>
3738
</a>
3839
</div>
3940

themes/vue/layout/partials/ecosystem_dropdown.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<li>
1212
<ul>
1313
<li><a href="https://github.com/vuejs/vue-devtools" class="nav-link" target="_blank">Devtools (En)</a></li>
14-
<li><a href="https://vuejs-templates.github.io/webpack" class="nav-link" target="_blank">Template webpack (En)</a></li>
14+
<li><a href="https://cli.vuejs.org/" class="nav-link" target="_blank">Vue CLI (En)</a></li>
1515
<li><a href="https://vue-loader.vuejs.org" class="nav-link" target="_blank">Vue Loader (En)</a></li>
1616
</ul>
1717
</li>

themes/vue/source/css/_sponsors-sidebar.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
font-weight: bold
99
display block
1010
&:first-child
11-
margin-top: 12px
11+
margin-top: 18px
1212
&:last-child
13-
margin-bottom: 14px
13+
margin-bottom: 20px
1414
img, a
1515
width: 125px
1616

themes/vue/source/images/codexyz.png

10.9 KB
Loading

themes/vue/source/images/kintohub.png

2.63 KB
Loading

0 commit comments

Comments
 (0)