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

16 lines
281 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
2024-02-11 08:10:29 +00:00
<div :class="cx('root')" v-bind="ptmi('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',
2024-02-11 08:10:29 +00:00
extends: BaseAvatarGroup,
inheritAttrs: false
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>