I need assistance in creating links to different pages using data in curly brackets {{ }}, I am having trouble figuring out the correct way to implement them.
<div id="app">
<div v-for="data in categorie">
<button v-on:click=" filterFunction(data) ">{{data}}</button>
<a href="testsite{{data}}.html"> test links </a>
</div>
</div>
If anyone could provide some guidance, I would greatly appreciate it.