🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
+ vue ``` beforeCreate() create() beforeMounted() mouted() ``` + react ``` componentWillMount() render() componentDidMount() shouldComponentUpdate() // 组件被更新之前 return true 确认组件更新 componentWillUpdate() // 组件被更新之前,但是在 shouldComponentUpdate 之后,取决于返回结果 componentDidUpdate() // 组件被更新之后 ```