Skip to content
On this page

Avatar

Avatars can be used to represent people or objects. It supports images or text.

Pic

props.name

Pic
A simple element like img
<template>
  <v-avatar src="https://avatars.dicebear.com/api/human/yard.svg?width=285&mood=happy" />
</template>

Text

props.nameET

Text
It displays the initials of its name
<template>
  <v-avatar name="Eobard Thawne" />
</template>

Size

props.nameET
props.nameET
props.nameET

Size
The size of avatar can be ajusted
<template>
  <v-avatar name="Eobard Thawne" size="32px" />
  <v-avatar name="Eobard Thawne" size="64px" />
  <v-avatar name="Eobard Thawne" size="128px" />
</template>