摘要: 定义组件有两个要求: 组件名称必须以大写字母开头 组件的返回值只能有一个根元素 函数组件: function Welcome (props) { return <h1>Welcome {props.name}</h1> } ReactDOM.render(<Welcome name='react' 阅读全文
posted @ 2019-11-27 15:07 hongdou_hh 阅读(5979) 评论(0) 推荐(0) 编辑
摘要: 钩子函数分为生命周期钩子和路由守卫钩子 生命周期钩子: beforeCreate(){ console.log('组件实例化之前') }, created(){ console.log('组件实例化完毕,单页面还未显示') }, beforeMount(){ console.log('组件挂载前,页 阅读全文
posted @ 2019-11-27 14:41 hongdou_hh 阅读(1095) 评论(0) 推荐(0) 编辑