UNPKG

@dracul/customize-frontend

Version:

vue custom logo, custom theme, custom colors, i18n configuration}

40 lines (33 loc) 800 B
import MyButton from './Button.vue'; export default { title: 'Example/Button', component: MyButton, argTypes: { backgroundColor: { control: 'color' }, size: { control: { type: 'select', options: ['small', 'medium', 'large'] } }, }, }; const Template = (args, { argTypes }) => ({ props: Object.keys(argTypes), components: { MyButton }, template: '<my-button @onClick="onClick" v-bind="$props" />', }); export const Primary = Template.bind({}); Primary.args = { primary: true, label: 'Button', }; export const Secondary = Template.bind({}); Secondary.args = { label: 'Button', }; export const Large = Template.bind({}); Large.args = { size: 'large', label: 'Button', }; export const Small = Template.bind({}); Small.args = { size: 'small', label: 'Button', };