I am using VueJS with a PHP application. I have multiple posts with comments for each of them. Each of them has a class answer_comment. I am trying to make VueJS work for all of them (it currently only works with one).
new Vue({ el: '.answer_comment', /* other code */ })
This only affects the first one. How can I make it work for all of them? How can I select all elements with the class of answer_comment instead of only getting the first one?