mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Initiated docs and default preset update
This commit is contained in:
parent
36cd4c4692
commit
d80a18c052
26 changed files with 307 additions and 462 deletions
|
@ -1,55 +0,0 @@
|
|||
<template>
|
||||
<div>
|
||||
<Head>
|
||||
<Title>Unstyled - PrimeVue</Title>
|
||||
<Meta name="description" content="Styling PrimeVue with your favorite CSS library." />
|
||||
</Head>
|
||||
|
||||
<div class="doc">
|
||||
<div class="doc-main">
|
||||
<div class="doc-intro">
|
||||
<h1>Unstyled Mode</h1>
|
||||
<p>Styling PrimeVue with your favorite CSS library.</p>
|
||||
</div>
|
||||
<DocSections :docs="docs" />
|
||||
</div>
|
||||
<DocSectionNav :docs="docs" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ArchitectureDoc from '@/doc/unstyled/ArchitectureDoc.vue';
|
||||
import ExampleDoc from '@/doc/unstyled/ExampleDoc.vue';
|
||||
import SetupDoc from '@/doc/unstyled/SetupDoc.vue';
|
||||
import ThemeDoc from '@/doc/unstyled/ThemeDoc.vue';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
docs: [
|
||||
{
|
||||
id: 'architecture',
|
||||
label: 'Architecture',
|
||||
component: ArchitectureDoc
|
||||
},
|
||||
{
|
||||
id: 'setup',
|
||||
label: 'Setup',
|
||||
component: SetupDoc
|
||||
},
|
||||
{
|
||||
id: 'example',
|
||||
label: 'Example',
|
||||
component: ExampleDoc
|
||||
},
|
||||
{
|
||||
id: 'theme',
|
||||
label: 'Theme',
|
||||
component: ThemeDoc
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue