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

25 lines
429 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
<Fluid>
<InputText />
</Fluid>
</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('Fluid'),
key: 'Fluid'
}
]
};
}
};
</script>