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

26 lines
482 B
Vue

<template>
<DocSectionText v-bind="$attrs" />
<DocPTViewer :docs="ptViewerDoc">
<Fluid>
<InputText />
</Fluid>
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
ptViewerDoc: [
{
data: getPTOptions('Fluid'),
key: 'Fluid'
}
]
};
}
};
</script>