指令-vue

全局:

Vue.directive('focus', {
  // 当绑定元素插入到 DOM 中。
  inserted: function (el) {
  
  }
})

局部:

export default {

  directives: {
    drag : {
      inserted : function (el) {
        el.onclick = function () {
          
        }
      }
    }
  }

}

《vue.js前端开发技术》p202

posted @ 2019-12-04 20:06  雨夜稻草  阅读(167)  评论(0编辑  收藏  举报