index.vue 387 B

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