I'm trying to call a query search with url something like this:
http://localhost/Stellar/public/api/companies?column=name&direction=desc&page=1
In Vue Js 2.0 in trying to call something like this:
axios.get('$(this.source)?column=$(this.query.column)&direction=$(this.query.direction)$page=$(this.query.page)')
It is appearing something like this
http://localhost/Stellar/public/$(this.source)?column=$(this.query.column)&direction=$(this.query.direction)$page=$(this.query.page)
It is not converting the data. Help me out in this.
Thanks.