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