Newer
Older
xinJiangMiniProgranm / packageC / rumorWebView / rumorWebView.vue
dutingting on 3 Apr 2023 301 bytes ui改版第一版
<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>