Update examples/vue-3-cli/src/stories/DynamicHeading.stories.ts

Co-authored-by: Michael Shilman <shilman@users.noreply.github.com>
This commit is contained in:
Blaine Bublitz 2021-02-10 16:46:57 -07:00 committed by GitHub
parent ecb17c3120
commit d970cf1456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ export default {
component: DynamicHeading,
argTypes: {
// Number type is detected, but we still want to constrain the range from 1-6
level: { control: { min: 1, max: 6 } },
level: { control: { type: 'range', min: 1, max: 6 } },
},
decorators: [
(storyFn) => {