2023-07-09 21:13:49 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>As an example, Tailwind is used to style the <i>Button</i> and <i>Dialog</i> components of PrimeVue.</p>
|
|
|
|
</DocSectionText>
|
2023-07-10 12:04:43 +00:00
|
|
|
<div class="flex justify-content-center">
|
|
|
|
<iframe class="w-full h-full" style="border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 2px; min-height: 800px" src="https://codesandbox.io/p/sandbox/primevue-tailwind-dialog-button-pt-example-jl2xzx?embed=1" allowfullscreen></iframe>
|
2023-07-09 21:13:49 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
visible: false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|