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
Vue.component("myButton",{
template:"#button_template",
methods:{
fireEventForParent:function(event){
this.$emit("close",event,{name:"gz"});
}
},
data:function () {
return {}
}
})
var app=new Vue({
el:"#app",
data:{
"name":"gz",

},
methods:{
processClose:function($event,obj){
console.info(obj)
console.info($event)
console.info("close process invoked")
}
}
})
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

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@include file="/WEB-INF/webpage/common/taglibs.jspf"%>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${title}</title>
<meta name="decorator" content="single"/>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>


</head>
<body>
<div id="app">
<my-button @close="processClose"></my-button>
</div>

<template id="button_template">
<div @click="fireEventForParent($event)">click here ,see console</div>
</template>

<script>
Vue.component("myButton",{
template:"#button_template",
methods:{
fireEventForParent:function(event){
this.$emit("close",event,{name:"gz"});
}
},
data:function () {
return {}
}
})
var app=new Vue({
el:"#app",
data:{
"name":"gz",

},
methods:{
processClose:function($event,obj){
console.info(obj)
console.info($event)
console.info("close process invoked")
}
}
})
</script>
</body>

</html>