You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
382 B

  1. <template>
  2. <view>
  3. <!-- <web-view src="https://mp.weixin.qq.com/s/E3P7LocvLcklX2HIxblnsg"></web-view> -->
  4. <web-view :src="url"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. url: ''
  12. }
  13. },
  14. onLoad(options) {
  15. this.url = decodeURIComponent(options.url)
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>