mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
2.5 KiB
2.5 KiB
// Other imports and story implementation
export const Default: Story = {
render: (args) => ({
props: args,
}),
};
// Other imports and story implementation
export const Default = {
render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default: Story = {
render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default = {
render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default: Story = {
render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default = {
render: (args) => ({
Component: Button,
props: args,
});
};
// Other imports and story implementation
export const Default: Story = {
render: (args) => ({
Component: Button,
props: args,
}),
};
// Other imports and story implementation
export const Default = {
render: (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
}),
};
// Other imports and story implementation
export const Default: Story = {
render: (args) => ({
components: { Button },
setup() {
return { args };
},
template: '<Button v-bind="args" />',
}),
};
// Other imports and story implementation
export const Default = {
render: (args) => html`<demo-button label="Hello" @click=${action('clicked')}></demo-button>`,
};
// Other imports and story implementation
export const Default: Story = {
render: (args) => html`<custom-button label="Hello" @click=${action('clicked')}></custom-button>`,
};