mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
17 lines
357 B
JavaScript
17 lines
357 B
JavaScript
import Button from '../Button.vue';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
parameters: {
|
|
component: Button,
|
|
},
|
|
};
|
|
|
|
export const rounded = () => ({
|
|
template: '<my-button :rounded="true">A Button with rounded edges</my-button>',
|
|
});
|
|
|
|
export const square = () => ({
|
|
template: '<my-button :rounded="false">A Button with square edges</my-button>',
|
|
});
|