primevue-mirror/doc/bootstrap/ExampleDoc.vue

19 lines
609 B
Vue
Raw Normal View History

2023-07-09 21:13:49 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-02-01 23:55:10 +00:00
<p>Demonstration of various PrimeVue components like input field, button and table styled with Bootstrap utilities.</p>
2023-07-09 21:13:49 +00:00
</DocSectionText>
<div class="flex justify-content-center">
2024-02-01 23:55:10 +00:00
<iframe class="w-full h-full" style="border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 2px; min-height: 800px" allowfullscreen src="https://stackblitz.com/edit/vitejs-vite-gziyk1?file=src%2FApp.vue&embed=1"></iframe>
2023-07-09 21:13:49 +00:00
</div>
</template>
<script>
export default {
data() {
return {
visible: false
};
}
};
</script>