export default class Home extends Component { static defaultProps = { url_api: 'https://www.baidu.com' } constructor(props){ super(props); this.state = { isRefreshing: false }; }
}
取值的方法和es5一样
export default class Home extends Component { static defaultProps = { url_api: 'https://www.baidu.com' } constructor(props){ super(props); this.state = { isRefreshing: false }; }
}
取值的方法和es5一样