We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a4faa commit a925642Copy full SHA for a925642
src/router/index.ts
@@ -111,11 +111,6 @@ const router = createRouter({
111
path: '/statistics',
112
name: 'Statistics',
113
component: () => import('../views/StatisticsView.vue')
114
- },
115
- {
116
- path: '/task-detail',
117
- name: 'TaskDetail',
118
- component: () => import('../views/TaskDetailView.vue')
119
}
120
]
121
})
src/types/common.ts
@@ -79,6 +79,12 @@ export interface ColorSelectProps {
79
newLabel: LabelDataTypes
80
81
82
+export interface CategoryForm {
83
+ name: string
84
+ code: string
85
+ mainCategoryId?: number
86
+}
87
+
88
export interface CategoryDropdownProps {
89
options: Category[] | SubCategory[]
90
labelName: string
src/views/TaskDetailView.vue
0 commit comments