1234567891011121314151617181920212223242526 |
- <template>
- <view>
- <web-view :src="link" :progress="false"></web-view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- link: "",
- title: "",
- };
- },
- onLoad(options) {
- console.log(options.link);
- this.link = options.link;
- console.log(this.link);
- },
- onReady() {
- uni.setNavigationBarTitle({
- title: this.title,
- });
- },
- };
- </script>
|