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