vue基础知识

vue基础知识
1.声明式渲染
vue基础知识
2条件一循环
vue基础知识vue基础知识
循环
vue基础知识
vue基础知识

3.事件绑定
vue基础知识
vue基础知识
4双向绑定
vue基础知识
vue基础知识
5vue生命周期
一共八个阶段
1.beforeCreate(创建前)
2.created(创建后)
3.beforeMount(载入前)
4.mounted(载入后)
5.beforeUpdate(更新前)
6.updated(更新后)
7.beforeDestory(销毁前)
8.destoryed(销毁后)
vue基础知识
vue第一次页面加载会触发.beforeCreate created. beforeMount
mounted 这四个钩子函数
DOM渲染在mounted周期完成