2👍
✅
There several ways to do it.
-
Use simple string concatenation inside v-text
<li v-for="result in results" v-text="result.stu_lname+' ' + result.stu_fname"></li>
-
Without v-text
{{result.stu_lname}} {{result.stu_fname}}
You can also created a method where u will pass result and return what u want.
Also dont forget to add key for v-for.
Source:stackexchange.com