diff --git a/src/examples/src/todomvc/App/template.html b/src/examples/src/todomvc/App/template.html index eab4ba1226..0c9cc9fe64 100644 --- a/src/examples/src/todomvc/App/template.html +++ b/src/examples/src/todomvc/App/template.html @@ -34,7 +34,7 @@

todos

class="edit" type="text" v-model="todo.title" - @vnode-mounted="({ el }) => el.focus()" + @vue:mounted="({ el }) => el.focus()" @blur="doneEdit(todo)" @keyup.enter="doneEdit(todo)" @keyup.escape="cancelEdit(todo)"