美文网首页
typescript在react中的使用

typescript在react中的使用

作者: 一懒众衫小小小小 | 来源:发表于2020-04-15 11:03 被阅读0次

    声明state和props

    常见通用声明

    public state: {
        collapsed: boolean
    };
      
    static defaultProps = {
        collapsed: boolean
    };
        
    readonly state = {
        collapsed: boolean
        // ...
    }; 
    

    d.ts文件声明

    export interface ISiderMenuProps {
        logo?: string,
        // ...
    }
    
    export interface ISiderMenuState {
        collapsed: boolean,
        // ...
    }
    
    class SiderMenu extends PureComponent<ISiderMenuProps, ISiderMenuState> 
    

    相关文章

      网友评论

          本文标题:typescript在react中的使用

          本文链接:https://www.haomeiwen.com/subject/bgwqvhtx.html