# Routing

# Official Router

For most Single Page Applications, it's recommended to use the officially-supported vue-router library (opens new window). For more details, see vue-router's documentation (opens new window).

# Simple Routing from Scratch

If you only need very simple routing and do not wish to involve a full-featured router library, you can do so by dynamically rendering a page-level component like this:

const { createApp, h } = Vue

const NotFoundComponent = { template: '<p>Page not found</p>' }
const HomeComponent = { template: '<p>Home page</p>' }
const AboutComponent = { template: '<p>About page</p>' }

const routes = {
  '/': HomeComponent,
  '/about': AboutComponent
}

const SimpleRouter = {
  data: () => ({
    currentRoute: window.location.pathname
  }),

  computed: {
    CurrentComponent() {
      return routes[this.currentRoute] || NotFoundComponent
    }
  },

  render() {
    return h(this.CurrentComponent)
  }
}

createApp(SimpleRouter).mount('#app')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

Combined with the History API (opens new window), you can build a very basic but fully-functional client-side router. To see that in practice, check out this example app (opens new window).

# Integrating 3rd-Party Routers

If there's a 3rd-party router you prefer to use, such as Page.js (opens new window) or Director (opens new window), integration is similarly straightforward (opens new window). Here's a complete example (opens new window) using Page.js.

Deployed on Netlify.
Last updated: 2021-01-14, 06:13:32 UTC