Tasks moved to components

This commit is contained in:
2023-12-30 20:52:35 +01:00
parent c8a6d5e07b
commit 9d190463be
20 changed files with 391 additions and 407 deletions

View File

@@ -0,0 +1,30 @@
export default {
data: {
user: {
_id: '1234',
username: 'Example User',
email: 'test@example.com'
},
newTask: {},
fetchedTasks: [
{
title: 'frontend',
project: 'TiM',
client: 'Filip Rojek',
timeStart: 1703960133061,
timeEnd: 1703960141414
},
{
title: 'setting up',
project: 'l2tp vpn',
client: 'IS Media',
timeStart: 1703960133061,
timeEnd: 1703960141414
}
]
},
// Methods that you need, for e.g fetching data from server etc.
fetchData() {
// fetch logic
}
}