add demos for Tailwind theme (Panels, Media, Misc)

This commit is contained in:
ATAKAN TEPE 2023-07-28 08:56:58 +03:00
parent b459bdcce4
commit 4b8a3f2b19
77 changed files with 1714 additions and 177 deletions

View file

@ -0,0 +1,23 @@
<template>
<DocSectionText v-bind="$attrs">
<p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p>
</DocSectionText>
<DocSectionCode :code="code" embedded />
</template>
<script>
export default {
data() {
return {
code: {
composition: `
<template>
<div class="card flex justify-content-center">
<Image src="https://primefaces.org/cdn/primevue/images/galleria/galleria10.jpg" alt="Image" width="250" preview />
</div>
</template>`
}
};
}
};
</script>