webview.vue 324 B

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