import Primary from "./Primary.vue" export default { component: Primary, title: "Components/Tab", } const Template = (_args, { argTypes }) => ({ components: { Primary }, props: Object.keys(argTypes), template: ``, }) export const TabPrimary = Template.bind({}) TabPrimary.args = { label: "Primary", }