vue router in the route click router link code example

Example 1: vue router push

//Syntax - this.$router.push(path);
this.$router.push("/path");

Example 2: go to next route vuejs

// literal string path
router.push('home')

// object
router.push({ path: 'home' })

// named route
router.push({ name: 'user', params: { userId: '123' } })

// with query, resulting in /register?plan=private
router.push({ path: 'register', query: { plan: 'private' } })

Example 3: vue router name

<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>

Tags:

C Example