# Routing

Routes are defined under src/config/routes

   {
        path: '/',
        name: 'Counter Page',
        component: Counter,
        exact: true,
    },

That object should be added in routes array, and that's all to be able to route.