10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
|
// DIRECTIVES NOT WORKING
|
||
|
const Vue = require('vue');
|
||
|
Vue.directive('pin', {
|
||
|
bind: function(el, binding, vnode) {
|
||
|
el.style.position = 'fixed';
|
||
|
el.style.top = binding.value + 'px';
|
||
|
el.style.backgroundColor = 'red';
|
||
|
}
|
||
|
});
|