forked from sunseekers/Vue2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirective1.html
69 lines (68 loc) · 1.91 KB
/
directive1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>自定义指令</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
<div id='app'>
<my-component v-if="message" :message="message"></my-component>
<button @click='updata'>更新</button>
<button @click='uninstall'>卸载</button>
<button @click='install'>安装</button>
</div>
<script type="text/javascript" src='js/vue.min.js'></script>
<script>
Vue.directive('hell',{
//只调用一次,指令第一次绑定到元素
bind(el){
console.log('触发 bind 钩子函数')
},
// 被绑定元素插入父节点时调用
inserted(el){
console.log('触发inserted钩子函数!')
},
// 所在组件的`VNode`及其子元素的`VNode`全部更新时调用
componentUpdated(el) {
console.log('触发componentUpdated钩子函数!')
},
// 所在组件的`VNode`更新时调用,但是可能发生在其子元素的`VNode`更新之前著作权归作者所有。
updata(el){
console.log('触发 updata 钩子函数')
},
// 只调用一次,指令与元素解绑时调用
unbind(el) {
console.log('触发unbind钩子函数!')
}
});
let myComponent = {
template: '<h1 v-hell>{{ message }}</h1>',
props: { message: String }
}
new Vue({
el:'#app',
data:{
message:'Hello World Vue'
},
components:{
myComponent
},
methods:{
updata(){
this.message='更新 ';
},
uninstall(){
this.message='';
},
install(){
this.message='Hello World';
}
}
})
</script>
</body>
</html>