mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Storyshots: Inject args into Vue story component's props
This commit is contained in:
parent
577760020b
commit
bbddaa290e
@ -1,6 +1,10 @@
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import Vue from 'vue';
|
||||
|
||||
// this is defined in @storybook/vue but not exported,
|
||||
// and we need it to inject args into the story component's props
|
||||
const VALUES = 'STORYBOOK_VALUES';
|
||||
|
||||
function getRenderedTree(story: any) {
|
||||
const component = story.render();
|
||||
|
||||
@ -10,6 +14,9 @@ function getRenderedTree(story: any) {
|
||||
},
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
vm[VALUES] = story.args;
|
||||
|
||||
return vm.$mount().$el;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user