primevue-mirror/apps/showcase/pages/configuration/index.vue

113 lines
3.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<Head>
<Title>Configuration - PrimeVue</Title>
<Meta name="description" content="Global configuration options of the components." />
</Head>
<div class="doc">
<div class="doc-main">
<div class="doc-intro">
<h1>Configuration</h1>
2024-08-30 21:40:44 +00:00
<p>Application widget configuration for PrimeVue.</p>
2023-02-28 08:29:30 +00:00
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</div>
</template>
<script>
2023-09-21 11:21:43 +00:00
import ImportDoc from '@/doc/configuration/ImportDoc.vue';
2024-05-29 06:38:33 +00:00
import InputVariantDoc from '@/doc/configuration/InputVariantDoc.vue';
2023-07-09 21:13:49 +00:00
import PTDoc from '@/doc/configuration/PTDoc.vue';
2023-09-20 12:23:57 +00:00
import PTOptionsDoc from '@/doc/configuration/PTOptionsDoc.vue';
2023-09-21 11:21:43 +00:00
import RippleDoc from '@/doc/configuration/RippleDoc.vue';
2024-05-27 09:56:08 +00:00
import ThemeDoc from '@/doc/configuration/ThemeDoc.vue';
2023-09-21 11:21:43 +00:00
import UnstyledDoc from '@/doc/configuration/UnstyledDoc.vue';
import ZIndexDoc from '@/doc/configuration/ZIndexDoc.vue';
import NonceDoc from '@/doc/configuration/csp/NonceDoc.vue';
import LocaleApiDoc from '@/doc/configuration/locale/LocaleApiDoc.vue';
import RepositoryDoc from '@/doc/configuration/locale/RepositoryDoc.vue';
import SetLocaleDoc from '@/doc/configuration/locale/SetLocaleDoc.vue';
2023-02-28 08:29:30 +00:00
export default {
data() {
return {
docs: [
{
id: 'import',
label: 'Import',
component: ImportDoc
},
2024-05-27 09:56:08 +00:00
{
id: 'theme',
label: 'Theme',
component: ThemeDoc
},
2023-07-09 21:13:49 +00:00
{
id: 'unstyled',
label: 'Unstyled',
component: UnstyledDoc
},
{
id: 'pt',
label: 'Pass Through',
component: PTDoc
},
2023-09-20 12:23:57 +00:00
{
id: 'ptoptions',
label: 'Pass Through Options',
component: PTOptionsDoc
},
2023-02-28 08:29:30 +00:00
{
id: 'ripple',
label: 'Ripple',
component: RippleDoc
},
{
2024-05-29 06:38:33 +00:00
id: 'inputvariant',
label: 'InputVariant',
component: InputVariantDoc
2023-03-08 08:35:24 +00:00
},
2023-04-10 08:34:52 +00:00
{
id: 'zindex',
label: 'ZIndex',
component: ZIndexDoc
},
{
id: 'csp',
label: 'CSP',
children: [
{
id: 'nonce',
label: 'Nonce',
component: NonceDoc
}
]
},
2023-03-08 08:35:24 +00:00
{
id: 'locale',
label: 'Locale',
children: [
{
id: 'setlocale',
label: 'Set Locale',
component: SetLocaleDoc
},
{
id: 'repository',
label: 'Repository',
component: RepositoryDoc
},
{
id: 'localeapi',
label: 'API',
component: LocaleApiDoc
}
]
2023-02-28 08:29:30 +00:00
}
]
};
}
};
</script>