0 votes
in VueJS by

Explain the basic logical Vue.js app organisation

1 Answer

0 votes
by
A Vue.js application consists of a root Vue instance created with new Vue, optionally organized into a tree of nested, reusable components. For example, a todo app’s component tree might look like this:

Root Instance

└─ TodoList

   ├─ TodoItem

   │  ├─ DeleteTodoButton

   │  └─ EditTodoButton

   └─ TodoListFooter

      ├─ ClearTodosButton

      └─ TodoListStatistics

All Vue components are also Vue instances.

Related questions

0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
...