Vue.js,学习心得(特别篇)盖楼中
2017-11-01 本文已影响29人
战神飘雪
常用函数
声明是子组件,调用是父组件
计算属性: computed 有缓存
例子: computed:{
}
方法: methods 无缓存
例子: methods:{
}
钩子:mounted
例子: mounted:function(){
}
常用函数
计算属性: computed 有缓存
例子: computed:{
}
方法: methods 无缓存
例子: methods:{
}
钩子:mounted
例子: mounted:function(){
}