web_view.vue 360 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <web-view :src="url" @message="callback"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: '',
  11. };
  12. },
  13. onLoad: function(option) {
  14. this.url = this.Dever.data('web_view');
  15. },
  16. onShow: function() {},
  17. methods: {
  18. callback(e) {
  19. },
  20. }
  21. };
  22. </script>
  23. <style>
  24. </style>