web-view.vue 378 B

1234567891011121314151617181920212223
  1. <template>
  2. <web-view class="web-view" :src="websit"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. websit: ''
  9. }
  10. },
  11. onLoad(options) {
  12. this.websit = options.websit && decodeURIComponent(options.websit)
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .web-view {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. </style>