const NotFound = { template: '
Page not found
' } const Home = { template: 'home page
' } const About = { template: 'about page
' } const routes = { '/': Home, '/about': About } const app = new Vue({ el: '#app', data: { currentRoute: window.location.pathname }, computed: { ViewComponent () { return routes[this.currentRoute] || NotFound } }, render (h) { return h(this.ViewComponent) } })