Files
MP-XiaoXing/pages/tabbar/home/link.vue
2022-09-09 14:57:19 +08:00

29 lines
295 B
Vue

<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
methods: {
},
onReady() {
},
onLoad(e) {
this.url = JSON.parse(decodeURIComponent(e.url ));
},
}
</script>
<style>
</style>