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