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