webview.vue 370 B

1234567891011121314151617181920
  1. <!-- /pages/webview/webview.vue -->
  2. <template>
  3. <web-view :src="src"></web-view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. src: ''
  10. };
  11. },
  12. onLoad(option) {
  13. // 获取传递过来的url参数
  14. let optionurl = option.url;
  15. console.log("optionurl=========="+optionurl)
  16. this.src = decodeURIComponent(option.url);
  17. }
  18. };
  19. </script>