Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 340 Bytes

vue.md

File metadata and controls

14 lines (13 loc) · 340 Bytes
<template>
  <ion-chip>
    <ion-avatar>
      <img alt="Silhouette of a person's head" src="https://ionicframework.com/docs/img/demos/avatar.svg" />
    </ion-avatar>
    <ion-label>Chip Avatar</ion-label>
  </ion-chip>
</template>

<script lang="ts" setup>
import { IonAvatar, IonChip, IonLabel } from '@ionic/vue';
</script>