Files
zhongPin/pages/tabbar/home/link.vue
2023-02-15 09:25:11 +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>