primevue-mirror/pages/bootstrap/index.vue

44 lines
1.2 KiB
Vue
Raw Normal View History

2023-07-09 21:13:49 +00:00
<template>
<div>
<Head>
<Title>Bootstrap - PrimeVue</Title>
<Meta name="description" content="Styling PrimeVue with Boostrap." />
</Head>
<div class="doc">
<div class="doc-main">
<div class="doc-intro">
<h1>Bootstrap</h1>
2023-07-19 09:21:56 +00:00
<p><a href="https://getbootstrap.com" class="font-semibold hover:underline text-primary">Bootstrap</a> is a well-known CSS library to build responsive and mobile first web projects.</p>
2023-07-09 21:13:49 +00:00
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</div>
</div>
</template>
<script>
2023-09-21 11:21:43 +00:00
import ExampleDoc from '@/doc/bootstrap/ExampleDoc.vue';
import SetupDoc from '@/doc/bootstrap/SetupDoc.vue';
2023-07-09 21:13:49 +00:00
export default {
data() {
return {
docs: [
{
id: 'setup',
label: 'Setup',
component: SetupDoc
},
{
id: 'example',
label: 'Example',
component: ExampleDoc
}
]
};
}
};
</script>