In this tutorial we will learn how to get the search parameters from the current URL in Vue JS.
In Vue Js we will get the search query from the current URL using global route variable.
var test = this.$route.query.test;
console.log(test); // hello
Lets see the below example in which we learn how to get the search parameters from the current URL in Vue JS.
<template lang="">
<div>
<h1>User Information</h1>
<h2>Name : {{$route.query.name}} </h2>
<h2>Age : {{$route.query.age}} </h2>
<h2>City : {{$route.query.city}} </h2>
</div>
</template>
Step 3- Now, start the npm server
Output -