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

25 lines
478 B
Vue
Raw Normal View History

2024-09-19 07:36:09 +00:00
<template>
2024-09-20 12:22:44 +00:00
<DocPTViewer :docs="docs">
2024-09-19 07:36:09 +00:00
<div class="w-full">
<ProgressBar :value="50"></ProgressBar>
</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-19 07:36:09 +00:00
{
data: getPTOptions('ProgressBar'),
key: 'ProgressBar'
}
]
};
}
};
</script>