sdlink.vue 395 B

1234567891011121314151617181920212223242526
  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: "#007AFF",
  13. },
  14. },
  15. url: "",
  16. };
  17. },
  18. onLoad(option) {
  19. this.url = option.url;
  20. console.log(this.url, "123");
  21. },
  22. };
  23. </script>
  24. <style></style>