How to Get Query String Parameters in Vue JS?
Here, i will show you how to get url parameters in vue js. we can get query string params in vue js. we will get query string parameter using vue js route.
I will give you very simple example using vue router and we will getting all url query parameters in vue.js application.
In this example you can see to getting all params and also you can get single particular field parameter value. let's see bellow example:
You can try this type of url
http://localhost:8000?name=Hardik&email=hd@gmail.com
Example:
<!DOCTYPE html>
<html>
<head>
<title>Vue JS - Get Query Parameters Example - ItSolutionStuff.com</title>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://unpkg.com/vue-router"></script>
</head>
<body>
<div id="app">
</div>
<script type="text/javascript">
var router = new VueRouter({
mode: 'history',
routes: []
});
var myApp = new Vue({
router,
el: '#app',
mounted: function() {
parameters = this.$route.query
console.log(parameters)
name = this.$route.query.name
console.log(name)
},
});
</script>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Use Ternary Operator in Vue JS?
- How to Define Global Variables in Vue JS?
- How to Get Data Attribute Value in Vue JS?
- Vue JS Get Dropdown Selected Value Example
- How to Get String Length in Vue JS?
- Vue JS Call a Function On Load Example
- How to Get Current Date and Time in Vue JS?
- Laravel Vue Datatables Component Example
- How to use datepicker in vuejs?
- How to Change Date Format using Moment in Vue JS?
- Vue JS Toggle Switch Button Example
- How to Create and Use Component in Vue JS Cli?
- How to Replace String in Vue JS?
- Laravel Vue Flash Message Example From Scratch
- Laravel Vue JS Infinite Scroll Example with Demo