npm install
npm run serve
Fork this project!
Make sure that your newly created project is private and only you and me have access to it, otherwise tasks will not be graded.
To see how to change repository visibility to private and add collaborators click here and here
My email and username on github is: [email protected]
and tsotnekekelia
Modify Entries.vue so that it displays all the entry objects that are passed to it from App.vue
- Display title, image, text and date of each entry
- Have a computed property called
sortedEntries
that sorts received list of entries bydate
(newest to oldest by default) - Have a filter that displays
date
values in human readable format example:Thursday, December 31, 2020 2:15 PM
- Have a button above listing that by default says "Newest to Oldest", on click it toggles the ordering and reorders the list to "Oldest to Newest" and vice versa, button label has to change accordingly
Your app should look something like this: