0๐
โ
If you want to iterate inside your icons array, you can use a template with the v-for directive :
<template v-for="icon in icons">
<i class="fa fa-{{ icon.css }}></i>
</template>
Source:stackexchange.com