primevue-mirror/apps/showcase/doc/clt/PF2TWDoc.vue

21 lines
467 B
Vue
Raw Normal View History

2024-05-27 15:50:04 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Migrates files from PrimeFlex to Tailwind CSS, see the <NuxtLink to="/guides/primeflex">primeflex migration</NuxtLink> for further information.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
prime pf2tw
`
}
};
}
};
</script>