Vue复习笔记-2018-07-15

v-show为false表示dom元素已经加载,但是display属性为none

Vue.directive('jspang',function(el,binding,vnode){
     el.style = "color:"+binding.value;    
});
Vue.directive('jspang',{
     // directive五个生命周期
    bind:function(){};
    inserted:function(){}; 
    update:function(){};
    componentUpdated:function(){};
    unbind:function(){};
});



Var extendTag = Vue.extend({
      template: '

{{ LinkName }}

>', data: function () { return { LinkUrl:"http://www.baidu.com", LinkName:"百度一下,你就知道!" } } }) new extendTag().$mount("Zmj"); Vue.extend中的template中若有类似
    • 这种标签需要在外层套一个
      Vue.set用来改变单一数组等带有下标元素的某一个索引的值时使用,采用app.arr[1]='Ddd'不会生效,采用Vue.set(app.arr,1,'Ddd')

 

你可能感兴趣的:(Vue学习笔记)