You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
515 B
TypeScript
26 lines
515 B
TypeScript
1 year ago
|
import type { Story } from '@storybook/vue3'
|
||
|
import Collapsible from './Collapsible.vue'
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/Collapsible',
|
||
|
component: Collapsible,
|
||
|
args: {
|
||
|
modelValue: false,
|
||
|
title: 'Item',
|
||
|
content: 'lorem ipsum dolor sit amet',
|
||
|
},
|
||
|
}
|
||
|
|
||
|
const Template: Story = (args, { argTypes }) => ({
|
||
|
components: { Collapsible },
|
||
|
setup() {
|
||
|
return { args, argTypes }
|
||
|
},
|
||
|
template: `
|
||
|
<Collapsible v-bind="args"/>
|
||
|
`,
|
||
|
})
|
||
|
|
||
|
export const Default = Template.bind({})
|
||
|
Default.args = {}
|