h5.vue 414 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="content">
  3. <web-view :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url:"",
  11. }
  12. },
  13. onLoad(val) {
  14. this.url=uni.getStorageSync('url');
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. page{
  20. height: 100%;
  21. }
  22. .content{
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. }
  29. </style>