web-view.vue 299 B

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