import { h } from 'vue'; export default { name: "FormExpand", functional: true, props: { render: Function, par: {}//æµ‹è¯•å‚æ•° }, render: ({ render, par }) => { return render(h, { par }); //h(); } };