myWebView.vue 359 B

123456789101112131415161718192021222324
  1. <template>
  2. <web-view :src="'https://'+url"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. url: '',
  9. title: ''
  10. }
  11. },
  12. onLoad(res) {
  13. console.log(res.url)
  14. this.url = decodeURIComponent(res.url);
  15. console.log(this.url)
  16. },
  17. onReady() {
  18. uni.setNavigationBarTitle({
  19. title: this.title
  20. })
  21. }
  22. }
  23. </script>