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

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

}

}

})


进击的小开
浏览 3921回答 1
1回答

阿探

   // 注册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')
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js