18 lines
428 B
Vue
18 lines
428 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>
|