<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0">
<title>Title</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<span v-colors="color">{{message}}</span>
</div>
</body>
<script>
Vue.directive("colors",function(el,binding,vnode){
el.style["color"]= binding.value;
})
var app = new Vue({
el:"#app",
data:{
message:'hello world',
color:"pink"
}
})
</script>
</html>
网友评论