<!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.queryconsole.log(parameters)name = this.$route.query.nameconsole.log(name)},});</script></body></html>
Wednesday, November 20, 2019
vue js : Vue JS - Get Query String Parameters Example
Subscribe to:
Post Comments (Atom)
-
Implementing the Repository Pattern with CakePHP I must admit, my recent articles are becoming a bit obsessed around the repository pat...
-
Organization : Keeping each site's configuration in separate files makes the server easier to manage, especially when hosting multiple...
-
What is a closure? A closure is an inner function that has access to the outer (enclosing) function’s variables—scope chain. The closure h...
No comments:
Post a Comment