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