当前位置: 首页 > 文档资料 > Vue.js 教程 >

7.2.5 Vue.directive

优质
小牛编辑
125浏览
2023-12-01
  • 参数:
    • {string} id
    • {Function | Object} [definition]
  • 用法:

    注册或获取全局指令。

    // 注册
    Vue.directive('my-directive', {
      bind: function () {},
      inserted: function () {},
      update: function () {},
      componentUpdated: function () {},
      unbind: function () {}
    })
    
    // 注册 (指令函数)
    Vue.directive('my-directive', function () {
      // 这里将会被 `bind` 和 `update` 调用
    })
    
    // getter,返回已注册的指令
    var myDirective = Vue.directive('my-directive')