vuejs router push params code example
Example 1: vue router push
//Syntax - this.$router.push(path);
this.$router.push("/path");
Example 2: vue router name
router.push({ name: 'user', params: { userId: 123 }})
//Syntax - this.$router.push(path);
this.$router.push("/path");
router.push({ name: 'user', params: { userId: 123 }})