使用vue实现一个点击换色的指令

html代码:

script代码: // vue自定义指令,点击可以让元素随机换色 Vue.directive('randomColor', function(){ this.el.onclick = function(){ this.style.backgroundColor = 'rgb(' + parseInt(Math.random() * 256) + ',' + parseInt(Math.random() * 256) + ',' + parseInt(Math.random() * 256) +')'; } });

 

你可能感兴趣的:(Javascript,前端框架)