Olá, ate mesmo antes de criar as rotas o componente 'Cadastro' não é renderizado.
após aplicação do roteamento as tags de navegação nao são renderizos, somente a pagina 'Home' o console exibe essa mensagem de erro:
Property or method "routes" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
- {{ route.titulo }}
routes,js
import Home from './components/home/Home' import Cadastro from './components/cadastro/Cadastro'
export const routes = [ { path: '', component: Home, titulo: 'Home' }, { path: '/cadastro', component: Cadastro, titulo: 'Cadastro' } ];