mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
23 lines
525 B
Plaintext
23 lines
525 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'Components/Button',
|
|
};
|
|
|
|
export const Primary = () => ({
|
|
components: { Button },
|
|
template: '<Button background="#ff0" label="Button" />',
|
|
});
|
|
export const Secondary = () => ({
|
|
components: { Button },
|
|
template: '<Button background="#ff0" label="😄👍😍💯" />',
|
|
});
|
|
export const Tertiary = () => ({
|
|
components: { Button },
|
|
template: '<Button background="#ff0" label="📚📕📈🤓" />',
|
|
});
|
|
``` |