storybook/docs/snippets/vue/csf-3-example-render.ts-3.ts.mdx
2023-01-06 19:15:31 +00:00

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" />',
}),
};
```