v-on:click event Vue.js to show user posts
问题 I'm a student and I'm just getting into Vue.js so I'm still very new to it. Right now I'm making a project where I'm getting usernames from an API and when you click on the user it has to show the related post, but this is not working. When I click the button with the v-on:click event. nothing happens, not even in the console. So I hope someone can help me with my problem, I would really appreciate it. main.js : const app = new Vue({ el: "#app", data: { users: [], posts: [], }, methods: {