Open CalmDownJ opened 2 years ago
@akirakai defaultValue / initialValue 的问题看看能不能支持?🙏🏻
This issue is stale because it has been open 10 days with no activity. Remove stale label or comment or this will be closed in 2 days.
This issue was closed because it has been stalled for 10 days with no activity.
有任何进展吗,这个issue
现象:使用脚手架 @alilc/element 生成的组件库项目,执行 npm run lowcode:build 后,lowcode文件夹中的代码没有defaultValue内容
步骤:
export interface TableProps { id?: number; }
const Test: React.FC = function Test({
id = 1,
}) {
return {id} ;
};
export default Test;
export type { TestProps } from './components/test' export { default as Test } from './components/test'