mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
19 lines
396 B
Plaintext
19 lines
396 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './Button.vue';
|
|
|
|
import type { Meta } from '@storybook/vue3';
|
|
|
|
const meta: Meta<typeof Button> = {
|
|
/* 👇 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 default meta;
|
|
```
|