为了账号安全,请及时绑定邮箱和手机立即绑定

在一个vue的main.js中注册全局的自定义指令失效

在一个vue的main.js中注册全局的自定义指令失效

进击的小开 2017-12-08 16:55:13
new Vue({  el: '#app',  router,//使用router组件;  template: '<App/>',  components: { App }, directives: { globalf: function(el, binding){ el.style.color = binding.value }, globals: function(el, binding){ el.style.color = binding.value } } })
查看完整描述

1 回答

?
阿探

TA贡献18条经验 获得超4个赞


   

// 注册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')


查看完整回答
反对 回复 2017-12-11
  • 1 回答
  • 0 关注
  • 3927 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信