| 12345678910111213141516171819202122232425262728293031 | <template>  <web-view :src="url"></web-view></template><script>export default {				onLoad(options)  {			console.log(options.url)			this.url = options.url;		},		data() {			return {								url: '',							}		},		created() {				},		methods: {			}	}	</script><style></style>
 |