Tutorial by Examples

JavaScript: const MainPage = { template: '#mainpage-template' } const Page1 = { template: '#page1-template' } const Page2 = { template: '#page2-template' } const Page3 = { template: '#page3-template' } const router = new VueRouter({ mode: 'hash', routes: [{ path: ...
route/index.js import About from '@/components/About' const router = new Router({ routes: [ { path: '/', name: 'home', component: {template: "<div>Home</div>"} }, { path: '/about', component: About ...

Page 1 of 1