Files
xk-client-wx/pages/home/home-banner.vue
2024-09-19 12:51:35 +08:00

21 lines
329 B
Vue

<template>
<web-view :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(e) {
this.url = decodeURIComponent(e.id)
console.log(this.url,'aaaaaaaaaaaa')
// 传入需要跳转的链接 使用web-view标签进行跳转
}
}
</script>
<style>
</style>