[Vuejs]-How to bind CSS class into an HTML code tag?

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>

Leave a comment