<template> <web-view :src="url" ></web-view> </template> <script> import { getLocationParams } from '../../common/utils.js' export default { data() { return { url: '' } }, mounted() { this.url = decodeURIComponent(getLocationParams('url')); }, } </script> <style> </style>