mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
16 lines
376 B
Plaintext
16 lines
376 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './Button.vue';
|
|
|
|
import type { Meta } from '@storybook/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: 'Button',
|
|
component: Button,
|
|
} as Meta<typeof Button>;
|
|
``` |