vue查漏补缺

1.动态参数属性::[]

<div :[atrr]="width:100%"></div>

<script>
export default{
    data:()=>(
        {
            attrr:’class‘
        }
    )
}
</script>    

2.computed相对于method的好处在于有缓存,减少执行次数。

3.watch相对应computed的setter函数区别是可以执行异步函数。

4.watch监听对象中的属性

 

 5.动态操作clss样式(对象形式):  :class={active:true}  //active为类名  (一个标签仅支持一个静态class和一个动态的class)

 

 

 

 6.动态操作style样式(对象形式):  :style={color:activeColor}  //activeColor为属性值变量

 

 

 

posted on 2022-12-14 13:50  ChoZ  阅读(17)  评论(0编辑  收藏  举报

导航