mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
28 lines
579 B
Plaintext
28 lines
579 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.vue';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
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: 'Button',
|
|
component: Button,
|
|
};
|
|
|
|
export const Text = {
|
|
render: () => ({
|
|
components: { Button },
|
|
setup() {
|
|
return {
|
|
onClick: action('clicked'),
|
|
};
|
|
},
|
|
template: '<Button label="Hello" @click="onClick" />',
|
|
}),
|
|
};
|
|
``` |