mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
64 lines
1.7 KiB
Vue
64 lines
1.7 KiB
Vue
<script setup>
|
|
import { ref } from 'vue';
|
|
import Breadcrumb from './Breadcrumb.vue';
|
|
|
|
const singleItem = ref([{ label: 'Home', link: '#' }]);
|
|
const twoItems = ref([
|
|
{ label: 'Home', link: '#' },
|
|
{ label: 'Categories', link: '#' },
|
|
]);
|
|
const threeItems = ref([
|
|
{ label: 'Home', link: '#' },
|
|
{ label: 'Categories', link: '#' },
|
|
{ label: 'Marketing', count: 6, emoji: '📊' },
|
|
]);
|
|
const longBreadcrumb = ref([
|
|
{ label: 'Home', link: '#' },
|
|
{ label: 'Categories', link: '#', emoji: '📁' },
|
|
{ label: 'Marketing', link: '#' },
|
|
{ label: 'Digital', link: '#', emoji: '💻' },
|
|
{ label: 'Social Media', count: 12, emoji: '📱' },
|
|
]);
|
|
</script>
|
|
|
|
<!-- eslint-disable vue/no-bare-strings-in-template -->
|
|
<!-- eslint-disable vue/no-undef-components -->
|
|
<template>
|
|
<Story
|
|
title="Components/Breadcrumb"
|
|
:layout="{ type: 'grid', width: '800px' }"
|
|
>
|
|
<Variant title="Single Item">
|
|
<div class="w-full p-4 bg-n-background">
|
|
<Breadcrumb :items="singleItem" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<Variant title="Two Items">
|
|
<div class="w-full p-4 bg-n-background">
|
|
<Breadcrumb :items="twoItems" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<Variant title="Three Items with Count">
|
|
<div class="w-full p-4 bg-n-background">
|
|
<Breadcrumb :items="threeItems" count-label="articles" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<Variant title="Long Breadcrumb">
|
|
<div class="w-full p-4 bg-n-background">
|
|
<Breadcrumb :items="longBreadcrumb" count-label="articles" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<Variant title="RTL Support">
|
|
<div dir="rtl">
|
|
<div class="w-full p-4 bg-n-background">
|
|
<Breadcrumb :items="threeItems" count-label="articles" />
|
|
</div>
|
|
</div>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|