网页的运行过程——生命周期
以下所有都是一个方法function 写在script中,当执行到指定步骤的时候运行下述的function方法
beforeCreate 组件实例刚刚被创建,属性都没有
created 实例已经创建完成,属性已经绑定
beforeMount 模板编译之前,页面的{{}}未替换
mounted 模板编译之后,代替之前ready * -->网页加载后相当于onload
beforeUpdate 组件更新之前
updated 组件更新完毕 *
beforeDestroy 组件销毁前 -->当前网页跳转的时候
destroyed 组件销毁后