fix: loosen props type in Vue 3 Meta & add to TS example

This commit is contained in:
Blaine Bublitz 2021-02-09 14:05:09 -07:00
parent 5200223bf2
commit 349bb6d652
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ import { StoryFnVueReturnType } from './types';
export type { Args, ArgTypes, Parameters, StoryContext } from '@storybook/addons';
type VueComponent = ConcreteComponent;
type VueComponent = ConcreteComponent<any>;
type VueReturnType = StoryFnVueReturnType;
/**

View File

@ -1,4 +1,4 @@
import { Story } from '@storybook/vue3';
import { Story, Meta } from '@storybook/vue3';
import { FunctionalComponent, h } from 'vue';
import DynamicHeading, { Props } from './DynamicHeading';
@ -9,7 +9,7 @@ export default {
// Number type is detected, but we still want to constrain the range from 1-6
level: { control: { min: 1, max: 6 } },
},
};
} as Meta;
/*
You can return a Vue 3 functional component from a Story.