webview.vue 351 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <web-view v-if="url" :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: ''
  11. }
  12. },
  13. onLoad: function(option) {
  14. // 课程ID
  15. this.url = decodeURIComponent(option.url);
  16. console.log('++++url:'+ this.url)
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>