2024-09-18 13:06:57 +00:00
|
|
|
<template>
|
2024-09-20 12:22:44 +00:00
|
|
|
<DocPTViewer :docs="docs">
|
2024-09-18 13:06:57 +00:00
|
|
|
<ProgressSpinner />
|
|
|
|
</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:06:57 +00:00
|
|
|
{
|
|
|
|
data: getPTOptions('ProgressSpinner'),
|
|
|
|
key: 'ProgressSpinner'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|