Last active
September 24, 2018 07:13
-
-
Save eserdinyo/3a2e1b0701da8047fefe2c23650ff4f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import App from './App.vue' | |
Vue.directive('renk', { | |
bind(el, binding) { | |
if (binding.arg === 'background') { | |
el.style.backgroundColor = binding.value; | |
} else { | |
el.style.color = binding.value; | |
} | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment