primevue-mirror/pages/nuxt/index.vue

115 lines
4.1 KiB
Vue
Raw Normal View History

2023-10-15 20:57:44 +00:00
<template>
<div>
<Head>
2023-12-26 18:28:43 +00:00
<Title>Install PrimeVue with Nuxt</Title>
<Meta name="description" content="Setting up PrimeVue in a Nuxt project" />
2023-10-15 20:57:44 +00:00
</Head>
<div class="doc">
<div class="doc-main">
<div class="doc-intro">
2023-12-26 18:28:43 +00:00
<h1>Install PrimeVue with Nuxt</h1>
<p>Setting up PrimeVue in a Nuxt project.</p>
2023-10-15 20:57:44 +00:00
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</div>
</div>
</template>
<script>
import DownloadDoc from '@/doc/nuxt/DownloadDoc.vue';
2023-12-26 18:28:43 +00:00
import ExamplesDoc from '@/doc/nuxt/ExamplesDoc.vue';
import ModuleSetupDoc from '@/doc/nuxt/ModuleSetupDoc.vue';
import UsageDoc from '@/doc/nuxt/UsageDoc.vue';
2023-10-25 03:17:40 +00:00
import CSSLayerOrderDoc from '@/doc/nuxt/configuration/CSSLayerOrderDoc.vue';
2023-10-15 20:57:44 +00:00
import ComponentsDoc from '@/doc/nuxt/configuration/ComponentsDoc.vue';
import ComposablesDoc from '@/doc/nuxt/configuration/ComposablesDoc.vue';
2023-10-18 07:56:33 +00:00
import DirectivesDoc from '@/doc/nuxt/configuration/DirectivesDoc.vue';
2023-10-25 03:17:40 +00:00
import ImportPTDoc from '@/doc/nuxt/configuration/ImportPTDoc.vue';
2024-04-01 10:00:02 +00:00
import ImportThemeDoc from '@/doc/nuxt/configuration/ImportThemeDoc.vue';
2023-10-18 07:56:33 +00:00
import OptionsDoc from '@/doc/nuxt/configuration/OptionsDoc.vue';
2024-04-01 10:00:02 +00:00
import UnstyledDoc from '@/doc/nuxt/configuration/UnstyledDoc.vue';
2023-10-18 07:56:33 +00:00
import UsePrimeVueDoc from '@/doc/nuxt/configuration/UsePrimeVueDoc.vue';
2023-10-15 20:57:44 +00:00
export default {
data() {
return {
docs: [
{
id: 'download',
label: 'Download',
component: DownloadDoc
},
{
2023-12-26 18:28:43 +00:00
id: 'module-setup',
label: 'Module Setup',
component: ModuleSetupDoc
},
{
id: 'usage',
label: 'Usage',
component: UsageDoc
2023-10-15 20:57:44 +00:00
},
{
id: 'configuration',
2023-12-26 18:28:43 +00:00
label: 'Module Configuration',
2023-10-15 20:57:44 +00:00
children: [
{
id: 'useprimevue',
label: 'usePrimeVue',
component: UsePrimeVueDoc
},
2024-04-01 10:00:02 +00:00
{
id: 'unstyled',
label: 'unstyled',
component: UnstyledDoc
},
2023-10-15 20:57:44 +00:00
{
id: 'options',
label: 'options',
component: OptionsDoc
},
{
id: 'components',
label: 'components',
component: ComponentsDoc
},
{
id: 'directives',
label: 'directives',
component: DirectivesDoc
},
{
id: 'composables',
label: 'composables',
component: ComposablesDoc
2023-10-25 03:17:40 +00:00
},
{
id: 'importpt',
label: 'importPT',
component: ImportPTDoc
},
2024-04-01 10:00:02 +00:00
{
id: 'importtheme',
label: 'importTheme',
component: ImportThemeDoc
},
2023-10-25 03:17:40 +00:00
{
id: 'layerorder',
label: 'cssLayerOrder',
component: CSSLayerOrderDoc
2023-10-15 21:00:28 +00:00
}
2023-10-15 20:57:44 +00:00
]
},
{
2023-12-26 18:28:43 +00:00
id: 'examples',
label: 'Examples',
component: ExamplesDoc
2023-10-15 21:30:57 +00:00
}
2023-10-15 20:57:44 +00:00
]
};
}
};
</script>