<title>Document</title>
<script src="/lib/vue.js"></script>
</head>
<body>
<div id="box">
<div v-hello>11111</div>
</div>
<script>
// 创建指令
Vue.directive("hello",{
// 指令的生命周期函数
inserted(el){
console.log("inserted")
el.style.background= "red"
}
})
new Vue({
el:"#box"
})
</script>
</body>
</html>