mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
20 lines
344 B
Plaintext
20 lines
344 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import Button from 'Button.vue';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'Button',
|
|
};
|
|
|
|
export const Text = () => ({
|
|
components: { Button },
|
|
template: '<Button label="Hello" @click="onClick" />',
|
|
methods: {
|
|
onClick: action('clicked'),
|
|
},
|
|
});
|
|
``` |