20 lines
414 B
Vue
20 lines
414 B
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs"></DocSectionText>
|
||
|
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
code: {
|
||
|
basic: `
|
||
|
import Avatar from 'primevue/avatar';
|
||
|
import AvatarGroup from 'primevue/avatargroup'; //Optional for grouping
|
||
|
`
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|