Files
MP-XiaoXing/pages/tabbar/home/link.vue

29 lines
295 B
Vue
Raw Normal View History

2022-09-09 14:57:19 +08:00
<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>