fix: added views route in tasks

This commit is contained in:
Shariq Ansari 2024-06-20 16:31:29 +05:30
parent 3b1cd968b0
commit c71cade089

View File

@ -45,7 +45,8 @@ const routes = [
component: () => import('@/pages/Notes.vue'),
},
{
path: '/tasks',
alias: '/tasks',
path: '/tasks/view/:viewType?',
name: 'Tasks',
component: () => import('@/pages/Tasks.vue'),
},