47 lines
1.3 KiB
Vue
47 lines
1.3 KiB
Vue
|
<template>
|
||
|
<Head>
|
||
|
<Title>PrimeVue - Pass Through</Title>
|
||
|
<Meta name="description" content="The Pass Through props is an API to access the internal DOM Structure of the components." />
|
||
|
</Head>
|
||
|
<div class="doc">
|
||
|
<div class="doc-main">
|
||
|
<div class="doc-intro">
|
||
|
<h1>Pass Through</h1>
|
||
|
<p>The Pass Through props is an API to access the internal DOM Structure of the components.</p>
|
||
|
</div>
|
||
|
<DocSections :docs="docs" />
|
||
|
</div>
|
||
|
<DocSectionNav :docs="docs" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import BasicDoc from '@/doc/passthrough/BasicDoc';
|
||
|
import GlobalDoc from '@/doc/passthrough/GlobalDoc';
|
||
|
import LifecycleDoc from '@/doc/passthrough/LifecycleDoc';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'basic',
|
||
|
label: 'Basic',
|
||
|
component: BasicDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'lifecycle',
|
||
|
label: 'Lifecycle',
|
||
|
component: LifecycleDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'global',
|
||
|
label: 'Global',
|
||
|
component: GlobalDoc
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|