mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-02 05:03:44 +08:00
32 lines
754 B
Plaintext
32 lines
754 B
Plaintext
```js
|
|
// ButtonGroup.stories.js
|
|
|
|
import ButtonGroup from './ButtonGroup.vue';
|
|
|
|
//👇 Imports the Button stories
|
|
import * as ButtonStories from './Button.stories';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/vue/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'ButtonGroup',
|
|
component: ButtonGroup,
|
|
};
|
|
|
|
const Template = (args, { argTypes }) => ({
|
|
components: { ButtonGroup },
|
|
props: Object.keys(argTypes),
|
|
template: '<ButtonGroup v-bind="$props" />',
|
|
});
|
|
|
|
export const Pair = Template.bind({});
|
|
Pair.args = {
|
|
buttons: [
|
|
{ ...ButtonStories.Primary.args },
|
|
{ ...ButtonStories.Secondary.args }
|
|
],
|
|
orientation: 'horizontal',
|
|
};
|
|
``` |