fix: added tasks in sidebar & router.js
This commit is contained in:
parent
b4d9461c65
commit
e06d110cbc
@ -105,6 +105,7 @@ import DealsIcon from '@/components/Icons/DealsIcon.vue'
|
|||||||
import ContactsIcon from '@/components/Icons/ContactsIcon.vue'
|
import ContactsIcon from '@/components/Icons/ContactsIcon.vue'
|
||||||
import OrganizationsIcon from '@/components/Icons/OrganizationsIcon.vue'
|
import OrganizationsIcon from '@/components/Icons/OrganizationsIcon.vue'
|
||||||
import NoteIcon from '@/components/Icons/NoteIcon.vue'
|
import NoteIcon from '@/components/Icons/NoteIcon.vue'
|
||||||
|
import TaskIcon from '@/components/Icons/TaskIcon.vue'
|
||||||
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
|
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
|
||||||
import CollapseSidebar from '@/components/Icons/CollapseSidebar.vue'
|
import CollapseSidebar from '@/components/Icons/CollapseSidebar.vue'
|
||||||
import NotificationsIcon from '@/components/Icons/NotificationsIcon.vue'
|
import NotificationsIcon from '@/components/Icons/NotificationsIcon.vue'
|
||||||
@ -146,6 +147,11 @@ const links = [
|
|||||||
icon: NoteIcon,
|
icon: NoteIcon,
|
||||||
to: 'Notes',
|
to: 'Notes',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Tasks',
|
||||||
|
icon: TaskIcon,
|
||||||
|
to: 'Tasks',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Call Logs',
|
label: 'Call Logs',
|
||||||
icon: PhoneIcon,
|
icon: PhoneIcon,
|
||||||
|
|||||||
@ -37,6 +37,11 @@ const routes = [
|
|||||||
name: 'Notes',
|
name: 'Notes',
|
||||||
component: () => import('@/pages/Notes.vue'),
|
component: () => import('@/pages/Notes.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/tasks',
|
||||||
|
name: 'Tasks',
|
||||||
|
component: () => import('@/pages/Tasks.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/contacts',
|
path: '/contacts',
|
||||||
name: 'Contacts',
|
name: 'Contacts',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user