| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view>
- <web-view :src="url"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url:'',
- webviewStyles: {
- progress: {
- color: '#00A6FF'
- }
- },
- }
- },
- onLoad(option) {
- this.url = option.url;
- // this.title = option.title;
- // uni.setNavigationBarTitle({
- // title:this.title
- // })
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|