Commit ed43612
committed
feat: Add complete Vue 3 frontend with TailwindCSS
- Set up Vite + Vue 3 + TypeScript + TailwindCSS v3
- API layer:
* Axios HTTP client with error handling
* Type-safe API clients for boards, columns, cards, labels
* Full CRUD operations for all entities
- State management with Pinia:
* boardStore with complete state management
* Computed properties for cards by column
* Error handling and loading states
- Routing with Vue Router:
* Boards list view
* Individual board view with columns and cards
- Components:
* BoardsListView - displays all boards, create new boards
* BoardView - displays columns and cards for a board
* ColumnLane - displays cards in a column with WIP limit indicator
* CardItem - displays card with labels, due dates, blocked status
- Features:
* Responsive design with Tailwind CSS
* WIP limit visualization and warnings
* Label color coding
* Due date display with overdue indicators
* Blocked card indicators
* Clean, modern UI with proper loading and error states
Frontend ready to run with: npm install && npm run dev1 parent 51d7403 commit ed43612
29 files changed
Lines changed: 4853 additions & 0 deletions
File tree
- frontend/taskdeck-web
- .vscode
- public
- src
- api
- components/board
- router
- store
- types
- views
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
0 commit comments