44 lines
1.2 KiB
Vue
44 lines
1.2 KiB
Vue
<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>
|
|
<p><a href="https://getbootstrap.com" class="font-medium hover:underline text-primary">Bootstrap</a> is a well-known CSS library to build responsive and mobile first web projects.</p>
|
|
</div>
|
|
<DocSections :docs="docs" />
|
|
</div>
|
|
<DocSectionNav :docs="docs" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ExampleDoc from '@/doc/bootstrap/ExampleDoc.vue';
|
|
import SetupDoc from '@/doc/bootstrap/SetupDoc.vue';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
id: 'setup',
|
|
label: 'Setup',
|
|
component: SetupDoc
|
|
},
|
|
{
|
|
id: 'example',
|
|
label: 'Example',
|
|
component: ExampleDoc
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
</script>
|