mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
22 lines
419 B
Vue
22 lines
419 B
Vue
<script setup>
|
|
import Label from '../LabelItem.vue';
|
|
import { label } from './fixtures';
|
|
</script>
|
|
|
|
<template>
|
|
<Story title="Components/Label/Label item">
|
|
<Variant title="Default">
|
|
<Label :label="label" />
|
|
</Variant>
|
|
|
|
<Variant title="Custom Label">
|
|
<Label
|
|
:label="{
|
|
title: 'Custom Label',
|
|
color: '#FF5733',
|
|
}"
|
|
/>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|