webView.vue 252 B

12345678910111213141516171819202122232425
  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:null
  11. }
  12. },
  13. onLoad(options){
  14. this.src = options.url
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>