primevue-mirror/apps/showcase/doc/chip/pt/PTViewer.vue

26 lines
620 B
Vue
Raw Normal View History

2024-09-18 13:05:52 +00:00
<template>
2024-09-20 12:22:44 +00:00
<DocPTViewer :docs="docs">
2024-09-18 13:05:52 +00:00
<div class="flex flex-wrap gap-8">
<Chip label="Microsoft" icon="pi pi-microsoft" removable />
<Chip label="Xuxue Feng" image="https://primefaces.org/cdn/primevue/images/avatar/xuxuefeng.png" removable />
</div>
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
2024-09-20 12:22:44 +00:00
docs: [
2024-09-18 13:05:52 +00:00
{
data: getPTOptions('Chip'),
key: 'Chip'
}
]
};
}
};
</script>