mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
Update vue decorator to mirror SB one
This commit is contained in:
parent
36253648e4
commit
fc21e562dc
@ -78,22 +78,13 @@ function decorateStory(
|
||||
(decorated: StoryFn<VueConstructor>, decorator) => (context: StoryContext = defaultContext) => {
|
||||
let story;
|
||||
|
||||
const decoratedStory = decorator(p => {
|
||||
story = decorated(
|
||||
p
|
||||
? {
|
||||
...context,
|
||||
...p,
|
||||
parameters: {
|
||||
...context.parameters,
|
||||
...p.parameters,
|
||||
},
|
||||
}
|
||||
: context
|
||||
);
|
||||
|
||||
return story;
|
||||
}, context);
|
||||
const decoratedStory = decorator(
|
||||
({ parameters, ...innerContext }: StoryContext = {} as StoryContext) => {
|
||||
story = decorated({ ...context, ...innerContext });
|
||||
return story;
|
||||
},
|
||||
context
|
||||
);
|
||||
|
||||
if (!story) {
|
||||
story = decorated(context);
|
||||
|
Loading…
x
Reference in New Issue
Block a user