Currently working on a task list and aiming to set the default date to 3 days from now, excluding weekends. Utilizing Vue and thinking a computed property might be the solution?
DateTime.utc().plus({ days: 3 }).toFormat('yyyy-MM-dd HH:mm:ss'),
Seeking advice on how to skip setting the date to Saturday or Sunday. Have tried researching online with no luck in finding a workaround...