first commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<script setup>
|
||||
import avatar1 from '@images/avatars/avatar-1.png'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="demo-space-x">
|
||||
<!-- 👉 Top End -->
|
||||
<VBadge
|
||||
content="1"
|
||||
location="end top"
|
||||
>
|
||||
<VAvatar size="48">
|
||||
<VImg :src="avatar1" />
|
||||
</VAvatar>
|
||||
</VBadge>
|
||||
|
||||
<!-- 👉 Bottom Start -->
|
||||
<VBadge
|
||||
location="bottom start"
|
||||
content="2"
|
||||
>
|
||||
<VAvatar size="48">
|
||||
<VImg :src="avatar1" />
|
||||
</VAvatar>
|
||||
</VBadge>
|
||||
|
||||
<!-- 👉 Bottom End -->
|
||||
<VBadge
|
||||
location="bottom end"
|
||||
content="3"
|
||||
>
|
||||
<VAvatar size="48">
|
||||
<VImg :src="avatar1" />
|
||||
</VAvatar>
|
||||
</VBadge>
|
||||
|
||||
<!-- 👉 top Start -->
|
||||
<VBadge
|
||||
location="top start"
|
||||
content="4"
|
||||
>
|
||||
<VAvatar size="48">
|
||||
<VImg :src="avatar1" />
|
||||
</VAvatar>
|
||||
</VBadge>
|
||||
</div>
|
||||
</template>
|
Reference in New Issue
Block a user