I'm a newbie to Vue.js and facing a challenge with assigning a property to a link. I'm unsure of how to write the "counter" variable from "data" in order for it to properly function as intended.
export default {
name: 'app',
data () {
return {
counter: 1,
}
},
created(){
axios.get('http://jsonplaceholder.typicode.com/posts?
_start=${counter}+0&_limit=10').then(response => {
this.posts = response.data
})
}
}