import EnvInput from "./EnvInput.vue" export default { component: EnvInput, title: "Smart/EnvInput", } const Template = (_args, { argTypes }) => ({ components: { EnvInput }, props: Object.keys(argTypes), template: ``, }) export const SmartEnvInput = Template.bind({}) SmartEnvInput.args = { placeholder: "<>", value: "<>/<>", }