金诚优选前端代码
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.

22 lines
279 B

  1. <template>
  2. <view>
  3. <web-view :src="src"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return {
  10. src: ''
  11. }
  12. },
  13. onLoad(options){
  14. let src = this.$cookieStorage.get('webviewPath') || '';
  15. this.src = src;
  16. }
  17. }
  18. </script>
  19. <style>
  20. </style>