index.vue 342 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: '',
  11. }
  12. },
  13. onLoad(options) {
  14. //decodeURIComponent()函数可以识别并且分立出url
  15. let fromPath = decodeURIComponent(options.url);
  16. this.url = fromPath
  17. },
  18. }
  19. </script>
  20. <style>
  21. </style>