sdlink.vue 469 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <web-view :webview-styles="webviewStyles" :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. import { metaSetScalable } from "../../common/navTo";
  8. export default {
  9. data() {
  10. return {
  11. webviewStyles: {
  12. progress: {
  13. color: "#007AFF",
  14. },
  15. },
  16. url: "",
  17. };
  18. },
  19. onLoad(option) {
  20. this.url = option.url;
  21. // #ifdef H5
  22. metaSetScalable();
  23. // #endif
  24. },
  25. };
  26. </script>
  27. <style></style>