86 lines
2.6 KiB
Vue
86 lines
2.6 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Custom content can be placed inside the items using the <i>item</i> template. The divider between the items has its own <i>separator</i> template.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<Breadcrumb :home="home" :model="items">
|
|
<template #item="{ item }">
|
|
<a class="cursor-pointer" :href="item.url">
|
|
<span :class="item.icon"></span>
|
|
</a>
|
|
</template>
|
|
<template #separator> / </template>
|
|
</Breadcrumb>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
home: { icon: 'pi pi-home' },
|
|
items: [{ icon: 'pi pi-sitemap' }, { icon: 'pi pi-book' }, { icon: 'pi pi-wallet' }, { icon: 'pi pi-shopping-bag' }, { icon: 'pi pi-calculator' }],
|
|
code: {
|
|
basic: `
|
|
<Breadcrumb :home="home" :model="items">
|
|
<template #item="{ item }">
|
|
<a class="cursor-pointer" :href="item.url">
|
|
<span :class="item.icon"></span>
|
|
</a>
|
|
</template>
|
|
<template #separator> / </template>
|
|
</Breadcrumb>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Breadcrumb :home="home" :model="items">
|
|
<template #item="{ item }">
|
|
<a class="cursor-pointer" :href="item.url">
|
|
<span :class="item.icon"></span>
|
|
</a>
|
|
</template>
|
|
<template #separator> / </template>
|
|
</Breadcrumb>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
home: { icon: 'pi pi-home' },
|
|
items: [{ icon: 'pi pi-sitemap' }, { icon: 'pi pi-book' }, { icon: 'pi pi-wallet' }, { icon: 'pi pi-shopping-bag' }, { icon: 'pi pi-calculator' }]
|
|
}
|
|
}
|
|
}
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Breadcrumb :home="home" :model="items">
|
|
<template #item="{ item }">
|
|
<a class="cursor-pointer" :href="item.url">
|
|
<span :class="item.icon"></span>
|
|
</a>
|
|
</template>
|
|
<template #separator> / </template>
|
|
</Breadcrumb>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
const home = ref({ icon: 'pi pi-home' });
|
|
const items = ref([{ icon: 'pi pi-sitemap' }, { icon: 'pi pi-book' }, { icon: 'pi pi-wallet' }, { icon: 'pi pi-shopping-bag' }, { icon: 'pi pi-calculator' }]);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|