webView.vue 284 B

1234567891011121314151617181920212223
  1. <template>
  2. <web-view :src="src" v-if="src"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data(){
  7. return {
  8. src:''
  9. }
  10. },
  11. onLoad(options) {
  12. this.src = options.src;
  13. },
  14. methods:{
  15. }
  16. }
  17. </script>
  18. <style scoped lang="less">
  19. </style>