moringaman
1/22/2018 - 2:43 PM

Custom Vue Directives

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