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