Update index.vue

pull/3913/head
Tuğçe Küçükoğlu 2023-04-28 12:47:56 +03:00
parent cf7eb76578
commit 6117898492
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<DocComponent title="Vue Button Component" header="Button" description="Button is an extension to standard input element with icons and theming." :componentDocs="docs" :apiDocs="['Button']" />
<DocComponent title="Vue Button Component" header="Button" description="Button is an extension to standard input element with icons and theming." :componentDocs="docs" :apiDocs="['Button']" :ptTabComponent="ptComponent" />
</template>
<script>
@ -22,6 +22,8 @@ import SizesDoc from '@/doc/button/SizesDoc.vue';
import StyleDoc from '@/doc/button/StyleDoc.vue';
import TemplateDoc from '@/doc/button/TemplateDoc.vue';
import TextDoc from '@/doc/button/TextDoc.vue';
import PTComponent from '@/doc/button/pt/index.vue';
export default {
data() {
return {
@ -121,7 +123,8 @@ export default {
label: 'Accessibility',
component: AccessibilityDoc
}
]
],
ptComponent: PTComponent
};
}
};