Hello,
I’m brand new to the process of app-coding so please let me know if I am missing some info 
I’m using the following setup:
framework: Ionic vue 5.5.2
Ionic icons: 5.3.0 (as far as I can determine from the package.json file in the ionicicons folder)
I have started with a simple tabbed app however I have some issues getting the ionic icons working properly. I have included a small sample below. It seems that nothing really happens when I assign the name property but assigning :icon="" works.
<template>
<ion-page>
<ion-content>
<p>
nothing happens here:
<ion-icon name="heart"></ion-icon> <br>
this seems to work:
<ion-icon :icon="heart"></ion-icon><br>
Nothing happens here:
<ion-icon md="heart" ios="triangle"></ion-icon>
this seems to work:
<ion-icon :ios="triangle"></ion-icon><br>
large attribute however works as specified:
<ion-icon :icon="triangle" size="large"></ion-icon><br>
</p>
</ion-content>
</ion-page>
</template>
<script lang="ts">
import { IonPage, IonContent, IonIcon } from "@ionic/vue";
import { defineComponent } from "vue";
import { heart, triangle } from "ionicons/icons";
export default defineComponent({
name: "Add",
components: {
IonPage,
IonContent,
IonIcon,
},
setup() {
return {
heart,
triangle,
};
},
});
</script>
Best regards
Jonatan
