53 lines
1.5 KiB
Vue
53 lines
1.5 KiB
Vue
<template>
|
|
<Head>
|
|
<Title>PrimeFlex - PrimeVue</Title>
|
|
<Meta name="description" content="Moving from PrimeFlex to Tailwind CSS." />
|
|
</Head>
|
|
<div class="doc">
|
|
<div class="doc-main">
|
|
<div class="doc-intro">
|
|
<h1>Introduction</h1>
|
|
<p>Moving from PrimeFlex to Tailwind CSS.</p>
|
|
</div>
|
|
<DocSections :docs="docs" />
|
|
</div>
|
|
<DocSectionNav :docs="docs" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MigrationDoc from '@/doc/guides/primeflex/MigrationDoc.vue';
|
|
import OverviewDoc from '@/doc/guides/primeflex/OverviewDoc.vue';
|
|
import PluginDoc from '@/doc/guides/primeflex/PluginDoc.vue';
|
|
import TailwindCSSDoc from '@/doc/guides/primeflex/TailwindCSSDoc.vue';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
id: 'overview',
|
|
label: 'Overview',
|
|
component: OverviewDoc
|
|
},
|
|
{
|
|
id: 'tailwindcss',
|
|
label: 'Tailwind CSS',
|
|
component: TailwindCSSDoc
|
|
},
|
|
{
|
|
id: 'plugin',
|
|
label: 'Plugin',
|
|
component: PluginDoc
|
|
},
|
|
{
|
|
id: 'migration',
|
|
label: 'Migration',
|
|
component: MigrationDoc
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
</script>
|