Update code/renderers/vue3/template/cli/ts-3-8/Button.stories.ts

Co-authored-by: Yann Braga <yannbf@gmail.com>
This commit is contained in:
Kasper Peulen 2024-01-02 16:52:01 +01:00 committed by GitHub
parent bdf758d396
commit 18ce80bc8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,10 @@ const meta: Meta<typeof Button> = {
size: { control: 'select', options: ['small', 'medium', 'large'] },
backgroundColor: { control: 'color' },
},
args: { primary: false, onClick: fn() }, // default value
args: {
primary: false,
onClick: fn()
},
};
export default meta;