mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Try to fix storyshots
This commit is contained in:
parent
2d7c2beed5
commit
7c6a1d76ec
@ -1,3 +1,4 @@
|
||||
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
||||
import Vue from 'vue';
|
||||
|
||||
// this is defined in @storybook/vue but not exported,
|
||||
@ -7,13 +8,15 @@ const VALUES = 'STORYBOOK_VALUES';
|
||||
function getRenderedTree(story: any) {
|
||||
const component = story.render();
|
||||
|
||||
// @ts-ignore FIXME storyshots type error
|
||||
const vm = new Vue({
|
||||
// @ts-ignore FIXME storyshots type error
|
||||
render(h) {
|
||||
return h(component);
|
||||
},
|
||||
});
|
||||
|
||||
// @ts-expect-error (Converted from ts-ignore)
|
||||
// @ts-ignore FIXME storyshots type error
|
||||
vm[VALUES] = story.initialArgs;
|
||||
|
||||
return vm.$mount().$el;
|
||||
|
Loading…
x
Reference in New Issue
Block a user