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

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