feat: Add Inbox view with task/appointment/email management

- Add InboxView.vue with full CRUD UI
- Add inbox to navigation (first item)
- Support filtering by status/type
- Show stats (due today, overdue, etc.)
- Quick status updates with checkbox
- Priority indicators and overdue warnings
This commit is contained in:
FluxKit
2026-02-25 13:02:04 +00:00
parent 5f63514fe0
commit 8ae8abd7a7
24 changed files with 3320 additions and 9 deletions

View File

@@ -18,6 +18,11 @@ const routes = [
name: 'Dashboard',
component: () => import('@/views/DashboardView.vue')
},
{
path: 'inbox',
name: 'Inbox',
component: () => import('@/views/InboxView.vue')
},
{
path: 'contacts',
name: 'Contacts',