理解
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- 口诀 -->
<!-- 父传子传属性 -->
<!-- 子传父用事件 -->
<script src="../vue.js"></script>
<div id="app">
<p>父组件</p>
<child @myevent="handelEvent"></child>
</div>
<script>
Vue.component("child",{
template:`
<div>
child
<button @click="handleClick">click</button>
</div>
`,
methods: {
handleClick() {
// 通知父组件
this.$emit("myevent",1000)
}
},
})
let vm = new Vue({
el: "#app",
methods: {
handelEvent(data) {
//data参数 是接收子组件的值
console.log("等待子组件传来的状态",data)
}
},
})
</script>
</body>
</html>
案例