mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
13 lines
206 B
Plaintext
13 lines
206 B
Plaintext
```js
|
|
// CSF 2
|
|
|
|
// Other imports and story implementation
|
|
export const Default = (args) => ({
|
|
components: { Button },
|
|
setup() {
|
|
return { args };
|
|
},
|
|
template: '<Button v-bind="args" />',
|
|
});
|
|
```
|