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')
添加回答
举报
0/150
提交
取消