webView.vue 399 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view>
  3. <web-view :src="link" :progress="false"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. link: "",
  11. title: "",
  12. };
  13. },
  14. onLoad(options) {
  15. console.log(options.link);
  16. this.link = options.link;
  17. console.log(this.link);
  18. },
  19. onReady() {
  20. uni.setNavigationBarTitle({
  21. title: this.title,
  22. });
  23. },
  24. };
  25. </script>