primevue-mirror/pages/nuxt/index.vue

128 lines
4.5 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 StyledModeDoc from '@/doc/nuxt/StyledModeDoc.vue';
import UnstyledModeDoc from '@/doc/nuxt/UnstyledModeDoc.vue';
import UsageDoc from '@/doc/nuxt/UsageDoc.vue';
import VideoDoc from '@/doc/nuxt/VideoDoc.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';
2023-10-18 07:56:33 +00:00
import OptionsDoc from '@/doc/nuxt/configuration/OptionsDoc.vue';
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: 'theming',
label: 'Theming',
description: 'PrimeVue has two theming modes; styled or unstyled.',
children: [
{
id: 'styled',
label: 'Styled Mode',
component: StyledModeDoc
},
{
id: 'unstyled',
label: 'Unstyled Mode',
component: UnstyledModeDoc
}
]
},
{
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
},
{
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
},
{
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:27:45 +00:00
},
2023-10-15 20:57:44 +00:00
{
id: 'video',
2023-10-18 07:56:33 +00:00
label: 'Video Tutorial',
2023-10-15 20:57:44 +00:00
component: VideoDoc
2023-10-15 21:30:57 +00:00
}
2023-10-15 20:57:44 +00:00
]
};
}
};
</script>