mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import type { Meta, Story } from '@storybook/vue'; // For Vue 3 use import { Meta, Story } from '@storybook/vue3';
|
|
|
|
import { withDesign } from 'storybook-addon-designs';
|
|
|
|
import MyComponent from './MyComponent.vue';
|
|
|
|
// More on default export: https://storybook.js.org/docs/7.0/vue/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'FigmaExample',
|
|
component: MyComponent,
|
|
decorators: [withDesign],
|
|
} as Meta<typeof MyComponent>;
|
|
|
|
// More on component templates: https://storybook.js.org/docs/7.0/vue/writing-stories/introduction#using-args
|
|
const Template: StoryFn<typeof MyComponent> = () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
});
|
|
|
|
/*
|
|
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
* See https://storybook.js.org/docs/7.0/vue/api/csf
|
|
* to learn how to use render functions.
|
|
*/
|
|
export const Example: Story = {
|
|
render: () => ({
|
|
components: { MyComponent },
|
|
template: '<MyComponent />',
|
|
}),
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/Sample-File',
|
|
},
|
|
},
|
|
};
|
|
``` |