As a beginner in Front-end development, I am trying to figure out how I can use Vue.js to read a Java class List. Specifically, I have a Java class that includes a list of fruits and I want to be able to display this list on the UI using Vue.js:
public class MyClass {
List<String> fruits= new ArrayList<>(Arrays.asList("apple", "banana", "grapes"));
}