web-view-local.vue 307 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <web-view src="/hybrid/html/local.html" @message="getMessage"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. methods: {
  9. getMessage(e) {
  10. uni.showModal({
  11. content: JSON.stringify(e.detail),
  12. showCancel: false
  13. })
  14. }
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>