To create the user interface of LyricsFinder, we will install and use the Element components library. We will be creating single-file Vue.js components, which is preferable for simplicity's sake, given the small size of our application.
The user interface will really contain two main views (that is, pages):
- The home view, where we will be able to search for artists and songs
- The lyrics view, which will display song lyrics
To handle the navigation between those views, we will use the Vue Router library, which we introduced in the previous chapter.