mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
19 lines
430 B
Vue
19 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>
|