mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
17 lines
291 B
Plaintext
17 lines
291 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 primary label="Button" />',
|
|
});
|
|
|
|
Primary.storyName = 'I am the primary';
|
|
``` |