Newer
Older
xinJiangMiniProgranm / packageC / rumorWebView / rumorWebView.vue
dutingting on 13 Jun 2023 310 bytes 网站类型举报
<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>