Props
In this episode we are going to learn how to use props to send data from one Vue.js component to another.
In this episode of Vue 2 and October CMS Todo App we are going to create a new component for our application. This component is going to represent a single todo item from our todo list.
Next, we are going to reconfigure our app so that all of the data is coming in to the App.vue
component and then spreads from there to TodoList.vue
and then ends up in our todo.vue
component. All of that is going to be possible by using props in vue.js.