mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
18 lines
305 B
Plaintext
18 lines
305 B
Plaintext
```js
|
|
// CSF 2
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = (args, { argTypes }) => ({
|
|
props: Object.keys(argTypes),
|
|
components: { Button },
|
|
template: '<Button v-bind="$props" />',
|
|
});
|
|
Primary.args = { primary: true };
|
|
```
|