official-account.vue 646 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="container">
  3. <web-view :src="officialAccountLink" @message="handleMessage"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. officialAccountLink:
  11. "https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzIwNjc3ODg0NQ==#wechat_redirect",
  12. };
  13. },
  14. methods: {
  15. handleMessage(event) {
  16. // 处理 web-view 组件通信事件
  17. console.log("Received message from web-view:", event);
  18. },
  19. },
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. .container {
  24. width: 100%;
  25. height: 100vh;
  26. }
  27. </style>