mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
36 lines
664 B
Plaintext
36 lines
664 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './Button.vue';
|
|
|
|
// Replace vue3 with vue if you are using Storybook for Vue 2
|
|
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
|
|
const meta: Meta<typeof Button> = {
|
|
title: 'Button',
|
|
component: Button,
|
|
//👇 Enables auto-generated documentation for the component story
|
|
tags: ['docsPage'],
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof Button>;
|
|
|
|
export const Primary: Story = {
|
|
args: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Secondary: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
primary: false,
|
|
},
|
|
};
|
|
```
|