info.vue 200 B

123456789101112131415161718
  1. <template>
  2. <view>
  3. <web-view :src="src"> </web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. src:''
  11. };
  12. },
  13. onLoad(e) {
  14. this.src = e.url
  15. }
  16. }
  17. </script>