mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 00:52:12 +08:00
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
```js
|
|
// CSF 2
|
|
export const Default = (args) => ({
|
|
components: { Button },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Button v-bind="args" />',
|
|
});
|
|
```
|