Web.vue 242 Bytes
Newer Older
王建威's avatar
王建威 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
	<view>
		<web-view :src="url"></web-view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				url: ''
			}
		},
王建威's avatar
王建威 committed
14 15
		mounted() {
			 this.url = this.$store.state.webviewUrl;
王建威's avatar
王建威 committed
16 17 18 19 20 21
		}
	}
</script>

<style>
</style>