enisn
1 year ago
No known key found for this signature in database
GPG Key ID: A052619F04155D1C
1 changed files with
2 additions and
0 deletions
-
docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md
|
|
|
@ -290,6 +290,8 @@ Vue.component('todo-component', { |
|
|
|
myTodoApp.todo.addTodoItem(this.newTodo); |
|
|
|
this.newTodo = { description: '', isDone: false }; |
|
|
|
this.todos.push(this.newTodo); |
|
|
|
|
|
|
|
// Preferrable, you can load entire list of todos again. |
|
|
|
// this.loadTodos(); |
|
|
|
}, |
|
|
|
async loadTodos() { |
|
|
|
|