mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
42 lines
993 B
Plaintext
42 lines
993 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import YourComponent from './YourComponent.vue';
|
|
|
|
import { IconA, IconB, IconC, IconD, IconE } from './icons';
|
|
|
|
//👇 Maps the icons to a JSON serializable object to be safely used with the argTypes
|
|
const iconMap = { IconA, IconB, IconC, IconD, IconE };
|
|
|
|
export default {
|
|
title: 'My Story with Icons',
|
|
component: YourComponent,
|
|
//👇 Creates specific argTypes with options
|
|
argTypes: {
|
|
icon: {
|
|
control: {
|
|
type: 'select',
|
|
options: Object.keys(iconMap),
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => {
|
|
//👇 Retrieves the appropriate icon passes it as a component prop
|
|
const oldArgs = args;
|
|
const { icon } = oldArgs;
|
|
|
|
//👇 Sets the new icon
|
|
const selectedIcon = iconMap[icon];
|
|
|
|
//👇 Updates the args with the new icon
|
|
args.icon = selectedIcon;
|
|
|
|
return {
|
|
props: Object.keys(argTypes),
|
|
components: { YourComponent },
|
|
template: '<YourComponent v-bind="$props"/>',
|
|
};
|
|
};
|
|
``` |