Set up your local environment for projects. We'll walk you through everything you need to know, including how to install and configure your environment to be able to complete all of the tasks.
Write code to create a Vue component called BookList that displays a list of book titles and authors.
Write code that reads a list of book titles and authors from an array and displays them in a Vue component.
Refactor a BookList component into two components - BookList and BookItem.
Connect a child BookItem component to a parent BookList component.
Create a BookForm component that calls a method on submit that adds a new title and author to an array of books and updates the display.