36 lines
903 B
Vue
36 lines
903 B
Vue
|
<template>
|
||
|
<div class="doc-main">
|
||
|
<div class="doc-intro">
|
||
|
<h1>ProgressSpinner Pass Through</h1>
|
||
|
</div>
|
||
|
<DocSections :docs="docs" />
|
||
|
</div>
|
||
|
<DocSectionNav :docs="docs" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import DocApiTable from '@/components/doc/DocApiTable.vue';
|
||
|
import { getPTOptions } from '@/components/doc/helpers';
|
||
|
import PTImage from './PTImage.vue';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'pt.image',
|
||
|
label: 'Wireframe',
|
||
|
component: PTImage
|
||
|
},
|
||
|
{
|
||
|
id: 'pt.doc.progressspinner',
|
||
|
label: 'ProgressSpinner PT Options',
|
||
|
component: DocApiTable,
|
||
|
data: getPTOptions('ProgressSpinner')
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|