create.config.ts 388 Bytes
import { h } from 'vue';
import { FormSchema } from '/@/components/Form';
import { useRuleChainI18n } from '../../../hook/useRuleChainI18n';

const { t } = useRuleChainI18n('flow', 'output');
export const formSchemas: FormSchema[] = [
  {
    field: 'desc',
    label: '',
    component: 'Input',
    renderColContent: () => h('div', t('rule.chain.flow.output.fields.descHelp')),
  },
];