-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventHandling.js
64 lines (55 loc) · 1.07 KB
/
eventHandling.js
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
//==========================1)React==========================//
//1) Class
class Form extends React.Component {
constructor(props) {
super(props);
this._onClick = function(event) {
console.log(`${ field } changed to ${ event.target.value }`);
}.bind(this);
}
render() {
return (
<div>
<button onClick={ this._onClick }>Button</button>
</div>
);
}
};
//2) Function
const Form = () => {
const _onClick = function(event) {
console.log(`${field} changed to ${event.target.value}`);
};
return (
<div>
<button onClick={ _onClick }>Button</button>
</div>
);
};
//==========================2)Vue==========================//
<template>
<div>
<button @click="_onNClick">Button</button>
</div>
</template>
// 1)Option API
<script>
export default {
methods: {
_onNClick: (val) => {
console.log(val);
}
}
};
</script>
// 2)Composition API
<script>
export default {
setup() {
const _onNClick = (val) => {
console.log(val);
};
return { _onNClick };
},
};
</script>