From 4ff28e05879126d1723ec68d93e20866e64a34f1 Mon Sep 17 00:00:00 2001 From: enisn Date: Tue, 18 Mar 2025 18:03:21 +0300 Subject: [PATCH] Update post.md --- .../Community-Articles/2025-03-18-Using-Vue-Components/post.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md b/docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md index 2805ab310c..7577430274 100644 --- a/docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md +++ b/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() {