OpenWebview.vue 357 B

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