<template> <view> <web-view :src="href"></web-view> </view> </template> <script> export default { data() { return { href:"" }; }, onLoad(option) { this.href = option.url } } </script> <style lang="scss"> </style>