import type { Meta, StoryObj } from '@storybook/vue3'; import { Sidebar, SidebarItem } from '~/components'; type Story = StoryObj; const meta: Meta = { title: 'Application/Sidebar/SidebarItem', component: SidebarItem, tags: ['sidebar', 'bar', 'nav', 'item'], argTypes: { count: { table: { disable: true } }, default: { table: { disable: true } }, }, args: { label: 'Products', active: false, icon: 'i-youcan-tag', }, }; export const SidebarItem_: Story = { render: args => ({ components: { Sidebar, SidebarItem }, setup() { return { args }; }, template: ` `, }), }; export default meta;