// 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';
    }
});