Skip to content

Commit 377d538

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 8a40463 + 0a3fc29 commit 377d538

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

src/v2/guide/list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ Vue.component('todo-item', {
262262
template: '\
263263
<li>\
264264
{{ title }}\
265-
<button v-on:click="$emit('remove')">X</button>\
265+
<button v-on:click="$emit(\'remove\')">X</button>\
266266
</li>\
267267
',
268268
props: ['title']
@@ -309,7 +309,7 @@ Vue.component('todo-item', {
309309
template: '\
310310
<li>\
311311
{{ title }}\
312-
<button v-on:click="$emit('remove')">X</button>\
312+
<button v-on:click="$emit(\'remove\')">X</button>\
313313
</li>\
314314
',
315315
props: ['title']

src/v2/guide/team.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ order: 31
206206
'Bangalore, India': [12.971599, 77.594563],
207207
'Kingston, Jamaica': [18.017874, -76.809904],
208208
'Tehran, Iran': [35.689197, 51.388974],
209-
'Shanghai, China': [31.230390, 121.473702]
209+
'Shanghai, China': [31.230390, 121.473702],
210+
'Annecy, France': [45.899247, 6.129384]
210211
}
211212
var languageNameFor = {
212213
en: 'English',
@@ -612,6 +613,25 @@ order: 31
612613
reposPersonal: [
613614
'elemefe/element', 'elemefe/mint-ui'
614615
]
616+
},
617+
{
618+
name: 'Bruno Lesieur',
619+
title: 'French Community Directeur',
620+
city: 'Annecy, France',
621+
languages: ['fr', 'en'],
622+
github: 'Haeresis',
623+
twitter: 'MachinisteWeb',
624+
work: {
625+
role: 'Cofounder',
626+
org: 'Orchard ID',
627+
orgUrl: 'https://www.orchard-id.com/'
628+
},
629+
reposPersonal: [
630+
'vuejs-fr/vuejs.org', 'Haeresis/node-atlas-hello-vue'
631+
],
632+
links: [
633+
'https://node-atlas.js.org/', 'https://blog.lesieur.name/'
634+
]
615635
}
616636
]
617637

0 commit comments

Comments
 (0)