(args, { argTypes })
| 6 | } |
| 7 | |
| 8 | const Template = (args, { argTypes }) => ({ |
| 9 | props: Object.keys(argTypes), |
| 10 | components: { TwoColumnBlock }, |
| 11 | template: ` |
| 12 | <two-column-block v-bind="$props"> |
| 13 | <template v-slot:column-one> |
| 14 | {{ columnOneContent }} |
| 15 | </template> |
| 16 | <template v-slot:column-two> |
| 17 | {{ columnTwoContent }} |
| 18 | </template> |
| 19 | </two-column-block> |
| 20 | ` |
| 21 | }) |
| 22 | |
| 23 | export const Default = Template.bind({}) |
| 24 | Default.args = { |
nothing calls this directly
no outgoing calls
no test coverage detected