1
0
forked from dyf/APP
Files
APP/pages/common/addBLE/LinkBle.vue
2025-08-12 15:27:14 +08:00

34 lines
448 B
Vue

<template>
<view>
</view>
</template>
<script>
var these=null;
var eventChannel =null;
export default {
data() {
return {
}
},
onLoad(option) {
these=this;
eventChannel= this.getOpenerEventChannel();
eventChannel.on('LinkItem', function(data) {
console.log("收到父页面的参数了,",data)
eventChannel.emit("Linked",data);
})
},
methods: {
}
}
</script>
<style>
</style>