Skip to content

Commit 4a5b34b

Browse files
authored
Merge pull request vuejs#135 from Alex-Sokolov/master
Исправление пары примеров
2 parents b77ba67 + 3baf2c5 commit 4a5b34b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/v2/guide/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ Vue.component('button-counter', {
508508
this.counter += 1
509509
this.$emit('increment')
510510
}
511-
},
511+
}
512512
})
513513
new Vue({
514514
el: '#counter-event-example',

src/v2/guide/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ new Vue({
288288
{% raw %}
289289
<div id="todo-list-example" class="demo">
290290
<input
291-
v-model="newTodoText" v
291+
v-model="newTodoText"
292292
v-on:keyup.enter="addNewTodo"
293293
placeholder="Добавить todo"
294294
>

0 commit comments

Comments
 (0)