index.vue 326 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view>
  3. <web-view :src="webview_url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. webview_url:'',
  11. }
  12. },
  13. methods: {
  14. },
  15. onLoad(param) {
  16. let link_url = decodeURIComponent(param.link_url);
  17. this.webview_url = link_url;
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>