primevue-mirror/components/lib/avatargroup/AvatarGroup.vue

15 lines
255 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<div :class="cx('root')" v-bind="ptm('root')">
2022-09-06 12:03:37 +00:00
<slot></slot>
</div>
</template>
<script>
2023-05-25 10:07:09 +00:00
import BaseAvatarGroup from './BaseAvatarGroup.vue';
2022-09-06 12:03:37 +00:00
export default {
name: 'AvatarGroup',
2023-05-25 10:07:09 +00:00
extends: BaseAvatarGroup
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>