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