1
0
forked from dyf/APP
Files
APP/pages/common/addBLE/LinkBle.vue

34 lines
448 B
Vue
Raw Normal View History

2025-07-11 16:08:17 +08:00
<template>
<view>
</view>
</template>
<script>
2025-08-12 15:27:14 +08:00
var these=null;
var eventChannel =null;
2025-07-11 16:08:17 +08:00
export default {
data() {
return {
}
},
2025-08-12 15:27:14 +08:00
onLoad(option) {
these=this;
eventChannel= this.getOpenerEventChannel();
eventChannel.on('LinkItem', function(data) {
console.log("收到父页面的参数了,",data)
eventChannel.emit("Linked",data);
})
},
2025-07-11 16:08:17 +08:00
methods: {
}
}
</script>
<style>
</style>