I am looking to extract values from a string and store them in an array for use in displaying values in a dropdown format within Vuejs
String str = "abc,123,676,uuu".
Once I have iterated through the values
<li v-for = "value in valueList" :key="value.index"> {{value}}</li>
abc
123
676
uuu