primevue-mirror/apps/showcase/pages/guides/migration/v4/index.vue

54 lines
1.6 KiB
Vue
Raw Normal View History

2024-04-01 07:43:18 +00:00
<template>
<Head>
<Title>Migration - PrimeVue</Title>
<Meta name="description" content="Migration Guide to PrimeVue v4." />
</Head>
<div class="doc">
<div class="doc-main">
<div class="doc-intro">
2024-05-29 22:40:50 +00:00
<h1>Migration</h1>
2024-04-01 07:43:18 +00:00
<p>Migration guide to PrimeVue v4.</p>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</div>
</template>
<script>
2024-05-27 11:15:29 +00:00
import OverviewDoc from '@/doc/guides/migration/v4/OverviewDoc.vue';
2024-05-29 22:40:50 +00:00
import BreakingDoc from '@/doc/guides/migration/v4/changes/BreakingDoc.vue';
import CompatibleDoc from '@/doc/guides/migration/v4/changes/CompatibleDoc.vue';
2024-04-01 07:43:18 +00:00
export default {
data() {
return {
docs: [
{
id: 'overview',
label: 'Overview',
component: OverviewDoc
},
{
2024-05-29 22:40:50 +00:00
id: 'changes',
label: 'Changes',
description: 'The list of backward compatible and breaking changes.',
2024-04-01 07:43:18 +00:00
children: [
{
2024-05-29 22:40:50 +00:00
id: 'compatible',
label: 'Compatible',
component: CompatibleDoc
2024-04-01 07:43:18 +00:00
},
{
2024-05-29 22:40:50 +00:00
id: 'breaking',
label: 'Breaking',
component: BreakingDoc
2024-04-01 07:43:18 +00:00
}
]
}
]
};
}
};
</script>