Tag pt demo added

pull/3892/head
Tuğçe Küçükoğlu 2023-04-21 16:44:16 +03:00
parent 85ecc09e14
commit 7dfa8eb0f4
4 changed files with 97 additions and 2 deletions

44
doc/tag/pt/PTDoc.vue Normal file
View File

@ -0,0 +1,44 @@
<template>
<DocSectionText v-bind="$attrs"> </DocSectionText>
<div class="card flex justify-content-center">
<Tag icon="pi pi-user" value="Waiting" :pt="{ root: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)', borderRadius: '24px' } } }" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<Tag icon="pi pi-user" value="Waiting"
:pt="{
root: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)', borderRadius: '24px' } }
}"
/>`,
options: `
<template>
<div class="card flex justify-content-center">
<Tag icon="pi pi-user" value="Waiting"
:pt="{
root: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)', borderRadius: '24px' } }
}"
/>
</div>
</template>`,
composition: `
<template>
<div class="card flex justify-content-center">
<Tag icon="pi pi-user" value="Waiting"
:pt="{
root: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)', borderRadius: '24px' } }
}"
/>
</div>
</template>`
}
};
}
};
</script>

8
doc/tag/pt/PTImage.vue Normal file
View File

@ -0,0 +1,8 @@
<template>
<DocSectionText v-bind="$attrs">
<p>{{ $attrs.description }}</p>
</DocSectionText>
<div>
<img class="w-full" src="https://primefaces.org/cdn/primevue/images/pt/tag.jpg" />
</div>
</template>

41
doc/tag/pt/index.vue Normal file
View File

@ -0,0 +1,41 @@
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Tag Pass Through</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import DocApiTable from '@/components/doc/DocApiTable.vue';
import { getPTOption } from '@/components/doc/helpers/PTHelper.js';
import PtDoc from './PTDoc.vue';
import PTImage from './PTImage.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.image',
label: 'WireFrame',
component: PTImage
},
{
id: 'pt.doc',
label: 'Tag Elements',
component: DocApiTable,
data: getPTOption('Tag')
},
{
id: 'pt.demo',
label: 'Demo',
component: PtDoc
}
]
};
}
};
</script>

View File

@ -1,5 +1,5 @@
<template>
<DocComponent title="Vue Tag Component" header="Tag" description="Tag component is used to categorize content." :componentDocs="docs" :apiDocs="['Tag']" />
<DocComponent title="Vue Tag Component" header="Tag" description="Tag component is used to categorize content." :componentDocs="docs" :apiDocs="['Tag']" :ptTabComponent="ptComponent" />
</template>
<script>
@ -11,6 +11,7 @@ import PillDoc from '@/doc/tag/PillDoc';
import SeverityDoc from '@/doc/tag/SeverityDoc';
import StyleDoc from '@/doc/tag/StyleDoc';
import TemplateDoc from '@/doc/tag/TemplateDoc';
import PTComponent from '@/doc/tag/pt/index.vue';
export default {
data() {
@ -56,7 +57,8 @@ export default {
label: 'Accessibility',
component: AccessibilityDoc
}
]
],
ptComponent: PTComponent
};
}
};