2024-09-17 09:03:44 +00:00
|
|
|
<template>
|
2024-09-20 12:22:44 +00:00
|
|
|
<DocPTViewer :docs="docs">
|
2024-09-17 09:03:44 +00:00
|
|
|
<Breadcrumb :home="home" :model="items" />
|
|
|
|
</DocPTViewer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { getPTOptions } from '@/components/doc/helpers';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
home: {
|
|
|
|
icon: 'pi pi-home'
|
|
|
|
},
|
|
|
|
items: [{ label: 'Electronics' }, { label: 'Computer', icon: 'pi pi-desktop' }, { label: 'Accessories' }, { label: 'Keyboard' }, { label: 'Wireless' }],
|
2024-09-20 12:22:44 +00:00
|
|
|
docs: [
|
2024-09-17 09:03:44 +00:00
|
|
|
{
|
|
|
|
data: getPTOptions('Breadcrumb'),
|
|
|
|
key: 'Breadcrumb'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|