Try to fix storyshots

This commit is contained in:
Michael Shilman 2022-10-11 11:51:56 +08:00
parent 2d7c2beed5
commit 7c6a1d76ec

View File

@ -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;