Photo | 11 |First Name | 12 |Last Name | 13 |Phone | 15 |Nationality | 16 ||
---|---|---|---|---|---|
25 | |
30 | {{ employee.firstName }} | 31 |{{ employee.lastName }} | 32 |{{ employee.email }} | 33 |{{ employee.phone }} | 34 |{{ employee.nationality }} | 35 |
{{ sortedEmployees.length }} employees | 40 |
This example builds upon everything we've covered in the book. It uses 5 | what we've learned to create a Nuxt.js app with a Vuex store and authentication, 6 | that fetches data from a remote API and displays it in a custom component, 7 | linking to a detail page for each item.
8 |Go to the
18 | {{ selectedEmployee.location.street }}, 19 | {{ selectedEmployee.location.city }}, 20 | {{ selectedEmployee.location.state }}, 21 | {{ selectedEmployee.location.postcode }} 22 |
23 |