xinelu-applet-ui/pagesB/solution/solution.vue

26 lines
326 B
Vue
Raw Normal View History

2023-11-01 17:33:57 +08:00
<template>
<view>
<web-view src="https://msg.xinyilu.cn/" @message="handlePostMessage"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods:{
handlePostMessage(e){
console.log(e,'000')
},
},
}
</script>
<style lang="scss">
</style>