imHome.vue 265B

123456789101112131415161718192021
  1. <template>
  2. <view>
  3. <web-view :src="imUrl"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return{
  10. imUrl:''
  11. }
  12. },
  13. onLoad(data) {
  14. this.imUrl = decodeURIComponent(data.imUrl)
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>