import Test from 'Test.vue'
render: h => {
return h(Test,{
// 监听Test组件触发的方法
onTest() {
console.log(111)
}
}, '')
}
// Test.vue组件
<template>
<div class="label_operate">
<button @click="$emit('Test')">发送</button>
</div>
</template>