mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
import type { StoryObj } from '@storybook/vue3';
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Example/Button',
|
|
component: Button,
|
|
argTypes: {
|
|
size: { control: 'select', options: ['small', 'medium', 'large'] },
|
|
backgroundColor: { control: 'color' },
|
|
onClick: { action: 'clicked' },
|
|
},
|
|
// This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/7.0/vue/writing-docs/docs-page
|
|
tags: ['autodocs'],
|
|
};
|
|
type Story = StoryObj<typeof Button>;
|
|
/*
|
|
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
* See https://storybook.js.org/docs/7.0/vue/api/csf
|
|
* to learn how to use render functions.
|
|
*/
|
|
export const Primary: Story = {
|
|
args: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
export const Secondary: Story = {
|
|
args: {
|
|
primary: false,
|
|
label: '👍😍 Button 😍👍',
|
|
},
|
|
};
|
|
|
|
export const Large: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
size: 'large',
|
|
},
|
|
};
|
|
|
|
export const Medium: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
size: 'medium',
|
|
},
|
|
};
|
|
|
|
export const Small: Story = {
|
|
args: {
|
|
...Primary.args,
|
|
size: 'small',
|
|
},
|
|
};
|