A collection of custom vue directives
// Custom directives
Vue.directive('gendercolor', {
bind(el, binding, vnode) {
if (binding.value === 'female') {
el.style.backgroundColor = 'darkpink';
} else {
el.style.backgroundColor = 'royalblue';
}
},
});