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

15 lines
260 B
Plaintext

```js
// CSF 3 - explicit render function
// Other imports and story implementation
export const Default = {
render: (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
}),
};
```