stars-oceans / yhc

个人博客,我个人在学习,和开发中遇到的一些问题总结。
1 stars 0 forks source link

页面中使用 WebView #36

Open stars-oceans opened 10 months ago

stars-oceans commented 10 months ago

<template>
  <view>
    <!-- 其他页面内容 -->
    <web-view :src="webViewUrl" :bindmessage="onWebViewMessage"></web-view>
  </view>
</template>

<script>
export default {
  data() {
    return {
      webViewUrl: 'https://example.com',
    };
  },
  methods: {
    onWebViewMessage(event) {
      // 处理来自 WebView 的消息
      console.log('Message from WebView:', event.detail);
    },
  },
};
</script>