skip_to.vue 220 B

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