You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<input type="text" v-model="newTodoText" placeholder="Add new to-do"/>
</form>
<ul>
<li v-for="todo in todos"><!-- This renders a list of items based on an Array with todos as the source of data Array and todo is an alias for the Array element being iterated on-->
{{todo.text}} <!-- Mustache syntax Form of data binding called text interpolation The value of the todo is placed here after we add-->