cr-video.vue 294 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <web-view :fullscreen="false" :src="Url" :update-title="true"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. Url: ''
  11. };
  12. },
  13. onLoad(option) {
  14. this.Url = decodeURIComponent(option.url);
  15. },
  16. methods: {}
  17. };
  18. </script>
  19. <style></style>