真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

使用Vue.directive()的注意事項有哪些

小編給大家分享一下使用Vue.directive()的注意事項有哪些,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

創(chuàng)新互聯(lián)是一家專業(yè)提供昭化企業(yè)網站建設,專注與網站設計、成都網站設計、html5、小程序制作等業(yè)務。10年已為昭化眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網站設計公司優(yōu)惠進行中。

使用Vue.directive()的注意事項有哪些

官網實例:

https://cn.vuejs.org/v2/api/#Vue-directive

https://cn.vuejs.org/v2/guide/custom-directive.html

指令定義函數提供了幾個鉤子函數(可選):

bind: 只調用一次,指令第一次綁定到元素時調用,用這個鉤子函數可以定義一個在綁定時執(zhí)行一次的初始化動作。
inserted: 被綁定元素插入父節(jié)點時調用(父節(jié)點存在即可調用,不必存在于 document 中)。

update: 被綁定元素所在的模板更新時調用,而不論綁定值是否變化。通過比較更新前后的綁定值,可以忽略不必要的模板更新(詳細的鉤子函數參數見下)。

componentUpdated: 被綁定元素所在模板完成一次更新周期時調用。

unbind: 只調用一次, 指令與元素解綁時調用。

兩個簡單的demo

1、官網給出的demo,刷新頁面input自動獲取焦點:

 
  

   

// 注冊一個全局自定義指令 v-focus   Vue.directive('focus', {    // 當綁定元素插入到 DOM 中。     inserted: function (el,binding) {       // 聚焦元素        el.focus();    }  });  new Vue({    el:'#app'  });  // 注冊一個全局自定義指令 v-focus Vue.directive('focus', {   // 當綁定元素插入到 DOM 中。   inserted: function (el,binding) {    // 聚焦元素    el.focus();  } }); new Vue({   el:'#app' });

2、一個拖拽的demo: 1)被拖拽的元素必須用position定位,才能被拖動;

2)自定義指令完成后需要實例化Vue,掛載元素;

3)inserted: 被綁定元素插入父節(jié)點時調用(父節(jié)點存在即可調用,不必存在于 document 中)。

 
  .one,.two{ 
    height:100px; 
    width:100px; 
    border:1px solid #000; 
    position: absolute; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    -moz-user-select: -moz-none; 
    cursor: pointer; 
  } 
  .two{ 
    left:200px; 
  } 
 
 
  拖拽one

    拖拽two

 

   .one,.two{  height:100px;  width:100px;  border:1px solid #000;  position: absolute;  -webkit-user-select: none;  -ms-user-select: none;  -moz-user-select: -moz-none;  cursor: pointer;  }  .two{  left:200px;  }  拖拽one

 拖拽two

[javascript] view plain copy print?Vue.directive('drag', {    inserted:function(el){      el.onmousedown=function(e){        let l=e.clientX-el.offsetLeft;        let t=e.clientY-el.offsetTop;        document.onmousemove=function(e){          el.style.left=e.clientX-l+'px';          el.style.top=e.clientY-t+'px';        };        el.onmouseup=function(){          document.onmousemove=null;          el.onmouseup=null;        }      }    }  })  new Vue({    el:'#app'  });

看完了這篇文章,相信你對“使用Vue.directive()的注意事項有哪些”有了一定的了解,如果想了解更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網站標題:使用Vue.directive()的注意事項有哪些
文章來源:http://weahome.cn/article/gegjgg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部