12345678910111213141516171819202122232425 |
- <template>
- <view v-if="src">
- <web-view :fullscreen="false" :src="src" :webview-styles="wbStyles"/>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: '',
- src: '',
- wbStyles: {
- width: '100%',
- height: '100%',
- },
- }
- },
- onLoad(option) {
- console.log(option.title);
- this.title = option?.title
- this.src = option?.src
- },
- }
- </script>
|