Openwebview.vue 425 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url:'',
  11. webviewStyles: {
  12. progress: {
  13. color: '#00A6FF'
  14. }
  15. },
  16. }
  17. },
  18. onLoad(option) {
  19. this.url = option.url;
  20. // this.title = option.title;
  21. // uni.setNavigationBarTitle({
  22. // title:this.title
  23. // })
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>