mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix handling of nullish story output in Vue
This commit is contained in:
parent
1ddf17de5a
commit
2b11498b83
@ -17,13 +17,18 @@ import { extractProps } from './util';
|
||||
|
||||
export const WRAPS = 'STORYBOOK_WRAPS';
|
||||
|
||||
function prepare(rawStory: StoryFnVueReturnType, innerStory?: VueConstructor): VueConstructor {
|
||||
function prepare(
|
||||
rawStory: StoryFnVueReturnType,
|
||||
innerStory?: VueConstructor
|
||||
): VueConstructor | null {
|
||||
let story: ComponentOptions<Vue> | VueConstructor;
|
||||
|
||||
if (typeof rawStory === 'string') {
|
||||
story = { template: rawStory };
|
||||
} else {
|
||||
} else if (rawStory != null) {
|
||||
story = rawStory as ComponentOptions<Vue>;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
|
Loading…
x
Reference in New Issue
Block a user