primevue-mirror/doc/bootstrap/ExampleDoc.vue

19 lines
749 B
Vue
Raw Normal View History

2023-07-09 21:13:49 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-08-10 13:53:23 +00:00
<p>As an example, <a href="https://getbootstrap.com/docs/4.0/components/modal/">Modal</a> and <a href="https://getbootstrap.com/docs/4.0/components/buttons/">Button</a> styles of Bootstrap are used to style PrimeVue Button and Dialog.</p>
2023-07-09 21:13:49 +00:00
</DocSectionText>
<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/unstyled-primevue-dialog-with-bootstrap-forked-nl5qn3?embed=1" allowfullscreen></iframe>
2023-07-09 21:13:49 +00:00
</div>
</template>
<script>
export default {
data() {
return {
visible: false
};
}
};
</script>