mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 00:52:12 +08:00
17 lines
242 B
Plaintext
17 lines
242 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button.vue';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Primary = {
|
|
render: () => ({
|
|
components: { Button },
|
|
template: '<Button primary label="Button" />',
|
|
}),
|
|
};
|
|
```
|