import Home from './pages/Home'; import Article from './pages/Article'; import Topic from './pages/Topic'; export default { mode: 'history', routes: [{ path: '/', component: Home }, { path: '/article/:id', component: Article, name: 'article.show' }, { path: '/topic/:slug', component: Topic, name : 'topic.show' } ] };