import React, { Component } from 'react';
class func extends Component{
constructor(porps){
super(props);
}
funcThree:() => {
console.log('箭头函数调用法')
}
render(){
return (
<button onClick={this.funcThree}></button>
)
}
}
网友评论