17 lines
361 B
Vue
17 lines
361 B
Vue
![]() |
<script>
|
||
![]() |
import BaseComponent from '@primevue/core/basecomponent';
|
||
![]() |
import AvatarGroupStyle from 'primevue/avatargroup/style';
|
||
![]() |
|
||
|
export default {
|
||
|
name: 'BaseAvatarGroup',
|
||
|
extends: BaseComponent,
|
||
![]() |
style: AvatarGroupStyle,
|
||
![]() |
provide() {
|
||
|
return {
|
||
![]() |
$pcAvatarGroup: this,
|
||
![]() |
$parentInstance: this
|
||
|
};
|
||
![]() |
}
|
||
|
};
|
||
|
</script>
|