I'm attempting to initiate a query search using a URL format like the following:
http://localhost/Stellar/public/api/companies?column=name&direction=desc&page=1
When working with Vue Js 2.0, I am trying to make a call similar to this:
axios.get('$(this.source)?column=$(this.query.column)&direction=$(this.query.direction)$page=$(this.query.page)')
However, it is generating something along the lines of:
http://localhost/Stellar/public/$(this.source)?column=$(this.query.column)&direction=$(this.query.direction)$page=$(this.query.page)
The data is not being converted as expected. Any assistance on this matter would be greatly appreciated.
Thank you.