This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-09-04_composition-13-d.../src/dummy-data.js

34 lines
793 B
JavaScript

export default [
{
id: 'max',
fullName: 'Maximilian Schwarzmüller',
projects: [
{ id: 'max_p1', title: 'Record the Vue course' },
{ id: 'max_p2', title: 'Create more courses' },
{ id: 'max_p3', title: 'Keep content updated' }
]
},
{
id: 'manu',
fullName: 'Manuel Lorenz',
projects: [
{ id: 'manu_p1', title: 'Create more courses' },
{ id: 'manu_p2', title: 'Dive into data science topics' },
{ id: 'manu_p3', title: 'Various things' }
]
},
{
id: 'julie',
fullName: 'Julie Jones',
projects: [
{ id: 'julie_p1', title: 'Create agenda for next months' },
{ id: 'julie_p2', title: 'Explore new topics' }
]
},
{
id: 'michael',
fullName: 'Michael Miller',
projects: []
}
];