import type { Meta, StoryObj } from '@storybook/vue3-vite' import SquareChip from './SquareChip.vue' const meta: Meta = { title: 'Components/SquareChip', component: SquareChip, tags: ['autodocs'], argTypes: { label: { control: 'text', defaultValue: 'Tag' } } } export default meta type Story = StoryObj export const TagList: Story = { render: () => ({ components: { SquareChip }, template: `
` }) }